Support for Gemini CLI (setup instructions) - WIP
This commit is contained in:
@@ -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"""
|
||||
|
||||
Reference in New Issue
Block a user