deep-research
Conduct multi-round deep web research using keywords and topics to gather comprehensive information from general, news, and finance sources.
Instructions
Deep web information search tool that can conduct multi-round in-depth research based on keywords and topics
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| question | Yes | User question | |
| reference | No | Reference materials | |
| keywords | No | Search keywords, please provide 1~5 keywords. Each keyword must: include complete subject and predicate, avoid pronouns and references, have independent search value, avoid logical overlap between keywords, and be directly relevant to the question | |
| topic | No | Search topic | general |
| rounds | No | Current search round, defaults to 1 |
Input Schema (JSON Schema)
{
"properties": {
"keywords": {
"description": "Search keywords, please provide 1~5 keywords. Each keyword must: include complete subject and predicate, avoid pronouns and references, have independent search value, avoid logical overlap between keywords, and be directly relevant to the question",
"items": {
"type": "string"
},
"maxItems": 5,
"minItems": 0,
"type": "array"
},
"question": {
"description": "User question",
"type": "string"
},
"reference": {
"description": "Reference materials",
"type": "string"
},
"rounds": {
"default": 1,
"description": "Current search round, defaults to 1",
"type": "number"
},
"topic": {
"default": "general",
"description": "Search topic",
"enum": [
"general",
"news",
"finance"
],
"type": "string"
}
},
"required": [
"question"
],
"type": "object"
}