answer_query_websearch
Answer natural language queries by combining Vertex AI's Gemini model with real-time Google Search results, delivering accurate and up-to-date information on demand.
Instructions
Answers a natural language query using the configured Vertex AI model (gemini-2.5-pro-exp-03-25) enhanced with Google Search results for up-to-date information. Requires a 'query' string.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The natural language question to answer using web search. |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The natural language question to answer using web search.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}