gemini_search
Retrieve accurate answers and verify facts by leveraging Gemini 2.0 Flash and Google Search integration. Ideal for general knowledge queries, fact-checking, and detailed information retrieval.
Instructions
Generates responses based on the latest information using Gemini 2.0 Flash and Google Search. Best for general knowledge questions, fact-checking, and information retrieval.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enable_thinking | No | Enable thinking mode for step-by-step reasoning | |
file_path | No | Optional file path to include with the query | |
model_id | No | Optional model ID override (advanced users only) | |
query | Yes | Your search query or question |
Input Schema (JSON Schema)
{
"properties": {
"enable_thinking": {
"description": "Enable thinking mode for step-by-step reasoning",
"type": "boolean"
},
"file_path": {
"description": "Optional file path to include with the query",
"type": "string"
},
"model_id": {
"description": "Optional model ID override (advanced users only)",
"type": "string"
},
"query": {
"description": "Your search query or question",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}