google_search
Search the web using Google Search with Gemini API integration to retrieve information with sources and citations for research and verification purposes.
Instructions
Search the web using Google Search grounding via Gemini API. Provides search results with sources and citations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instruction | No | Optional instruction for processing search results | |
model | No | Gemini model name to use (optional, defaults to gemini-2.0-flash-exp) | |
query | Yes | Search query to find information on the web |
Input Schema (JSON Schema)
{
"properties": {
"instruction": {
"description": "Optional instruction for processing search results",
"type": "string"
},
"model": {
"description": "Gemini model name to use (optional, defaults to gemini-2.0-flash-exp)",
"type": "string"
},
"query": {
"description": "Search query to find information on the web",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}