Support for Gemini CLI (setup instructions) - WIP

This commit is contained in:
Fahad
2025-06-25 19:36:09 +04:00
parent 9c1503faac
commit 6d0bafa81d
7 changed files with 276 additions and 83 deletions

View File

@@ -43,7 +43,16 @@ class ListModelsTool(BaseTool):
def get_input_schema(self) -> dict[str, Any]:
"""Return the JSON schema for the tool's input"""
return {"type": "object", "properties": {}, "required": []}
return {
"type": "object",
"properties": {
"model": {
"type": "string",
"description": "Model to use (ignored by listmodels tool)"
}
},
"required": []
}
def get_system_prompt(self) -> str:
"""No AI model needed for this tool"""