(query_params: Dict[str, Any], _body: Dict[str, Any])
| 169 | ) |
| 170 | |
| 171 | |
| 172 | def _api_wiki_mentions(query_params: Dict[str, Any], _body: Dict[str, Any]) -> Dict[str, Any]: |
| 173 | return agents.daily_note_mentions( |
| 174 | _required_user(query_params), |
| 175 | query=str(query_params.get("q") or ""), |
| 176 | limit=int(query_params.get("limit") or 8), |
| 177 | ) |
| 178 | |
| 179 |
nothing calls this directly
no test coverage detected