Search the web and return structured results with titles, URLs, and snippets. Supports configurable result count.
| 日期 | 适应度 | 安全分 | 调用数 |
|---|---|---|---|
| 2月23日 | 0.8690 | 0.87 | 1 |
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search query string"
},
"maxResults": {
"type": "integer",
"default": 5,
"maximum": 20,
"minimum": 1
}
}
} {
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
},
"snippet": {
"type": "string"
}
}
}
},
"searchTime": {
"type": "number"
},
"totalResults": {
"type": "integer"
}
}
}