web_search
Access real-time web information to verify facts or retrieve up-to-date data on any topic. Customize results with domain filtering and control the number of outputs for precise searches.
Instructions
Search the web for real-time information about any topic. Use this tool when you need up-to-date information that might not be available in your training data, or when you need to verify current facts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
allowedDomains | No | Only include results from these domains | |
blockedDomains | No | Never include results from these domains | |
maxResults | No | Maximum number of search results to return (default: 5) | |
query | Yes | The search query to look up on the web |
Input Schema (JSON Schema)
{
"properties": {
"allowedDomains": {
"description": "Only include results from these domains",
"items": {
"type": "string"
},
"type": "array"
},
"blockedDomains": {
"description": "Never include results from these domains",
"items": {
"type": "string"
},
"type": "array"
},
"maxResults": {
"description": "Maximum number of search results to return (default: 5)",
"type": "number"
},
"query": {
"description": "The search query to look up on the web",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}