refactor(ai): Audit and cleanup ai_client.py and gemini_cli_adapter.py

This commit is contained in:
2026-05-02 13:02:53 -04:00
parent 351f5e09eb
commit 29dd6ec36d
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -47,6 +47,7 @@ class GeminiCliAdapter:
Adapter for the Gemini CLI that parses streaming JSON output.
"""
def __init__(self, binary_path: str = "gemini"):
"""Initializes the adapter with the path to the gemini CLI executable."""
self.binary_path = binary_path
self.session_id: Optional[str] = None
self.last_usage: Optional[dict[str, Any]] = None