(_query_params: Dict[str, Any], body: Dict[str, Any])
| 191 | return agents.refresh_wiki(str(body.get("user_id") or "").strip()) |
| 192 | |
| 193 | |
| 194 | def _api_github_sync(_query_params: Dict[str, Any], body: Dict[str, Any]) -> Dict[str, Any]: |
| 195 | return agents.sync_reading_notes_github( |
| 196 | str(body.get("user_id") or "").strip(), |
| 197 | response_language=_response_language(body), |
| 198 | ) |
| 199 | |
| 200 |
nothing calls this directly
no test coverage detected