Plain text · sha256 da2fa36a5eab
The description, line by line
5 lines Line numbers are v2.1.278 on the left and this capture on the right.
1
1
Search the web. Returns result blocks with titles and URLs. US-only.
2
2
3
3
- The current month is September 2026 — use this when searching for recent information.
4
4
- `allowed_domains` / `blocked_domains` filter results.
5
5
- After answering from results, end with a "Sources:" list of the URLs you used as markdown links.
What it accepts
3 parameters The JSON parameter schema sent beside this description, 577 characters of it. Name, type, then whether the client marked it required.allowed_domains
string[]
optional
Only include search results from these domains
blocked_domains
string[]
optional
Never include search results from these domains
query
string
required
The search query to use
sha256 78ab127603dd · the schema as the client sent it:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"allowed_domains": {
"description": "Only include search results from these domains",
"items": {
"type": "string"
},
"type": "array"
},
"blocked_domains": {
"description": "Never include search results from these domains",
"items": {
"type": "string"
},
"type": "array"
},
"query": {
"description": "The search query to use",
"minLength": 2,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}