web_search_agent
Find accurate, up-to-date information from the internet using an AI agent specialized in web searching. Provide a search query to get relevant online results.
Instructions
Use an AI agent specialized in web searching to find accurate, up-to-date information from the internet.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | No | Optional location context for location-specific searches (e.g., 'New York'). | |
query | Yes | The search query or question you want to find information about online. |
Input Schema (JSON Schema)
{
"properties": {
"location": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional location context for location-specific searches (e.g., 'New York').",
"title": "Location"
},
"query": {
"description": "The search query or question you want to find information about online.",
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}