answer_query_direct
Provides answers to natural language queries using Vertex AI's internal knowledge, without web search. Input a query string to extract precise information directly from the model.
Instructions
Answers a natural language query using only the internal knowledge of the configured Vertex AI model (gemini-2.5-pro-exp-03-25). Does not use web search. Requires a 'query' string.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The natural language question to answer using only the model's internal knowledge. |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The natural language question to answer using only the model's internal knowledge.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}