(query_params: Dict[str, Any], _body: Dict[str, Any])
| 177 | ) |
| 178 | |
| 179 | |
| 180 | def _api_wiki_graph(query_params: Dict[str, Any], _body: Dict[str, Any]) -> Dict[str, Any]: |
| 181 | return agents.wiki_graph( |
| 182 | _required_user(query_params), |
| 183 | query=str(query_params.get("q") or ""), |
| 184 | limit=int(query_params.get("limit") or 24), |
| 185 | daily_scope=str(query_params.get("daily_scope") or "latest"), |
| 186 | daily_month=str(query_params.get("daily_month") or ""), |
| 187 | ) |
| 188 | |
| 189 |
nothing calls this directly
no test coverage detected