deepsearch-web
Perform targeted web searches across specific sites or time periods to retrieve more relevant results than standard AI search, with configurable filters for precision.
Instructions
针对站点或时间范围的 DeepSearch 定向检索,拥有比AI Agent内置搜索更好的搜索效果但更耗时,需要平衡需求
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filters | Yes | ||
locale | No | ||
query | Yes | ||
top_k | No |
Input Schema (JSON Schema)
{
"properties": {
"filters": {
"additionalProperties": {},
"type": "object"
},
"locale": {
"type": "string"
},
"query": {
"minLength": 1,
"type": "string"
},
"top_k": {
"maximum": 10,
"minimum": 1,
"type": "integer"
}
},
"required": [
"query",
"filters"
],
"type": "object"
}