deepsearch
Execute broad web searches using the DeepSearch model to retrieve structured results with improved accuracy compared to standard AI search tools, though processing may take longer.
Instructions
使用 DeepSearch 模型执行广域检索并返回结构化结果,拥有比AI Agent内置搜索更好的搜索效果但更耗时,需要平衡需求
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filters | No | ||
locale | No | ||
query | Yes | ||
top_k | No |
Input Schema (JSON Schema)
{
"properties": {
"filters": {
"additionalProperties": {},
"default": {},
"type": "object"
},
"locale": {
"type": "string"
},
"query": {
"minLength": 1,
"type": "string"
},
"top_k": {
"maximum": 10,
"minimum": 1,
"type": "integer"
}
},
"required": [
"query"
],
"type": "object"
}