deep_research
Explore in-depth research topics by extracting and analyzing web content with controlled depth, branching, and relevance scoring. Supports real-time web research with structured data integration.
Instructions
Perform deep research on a topic with content extraction and analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxBranching | No | Maximum number of related paths to explore | |
maxDepth | No | Maximum depth of related content exploration | |
minRelevanceScore | No | Minimum relevance score for including content | |
timeout | No | Research timeout in milliseconds | |
topic | Yes | Research topic or question |
Input Schema (JSON Schema)
{
"properties": {
"maxBranching": {
"description": "Maximum number of related paths to explore",
"maximum": 3,
"minimum": 1,
"type": "number"
},
"maxDepth": {
"description": "Maximum depth of related content exploration",
"maximum": 2,
"minimum": 1,
"type": "number"
},
"minRelevanceScore": {
"description": "Minimum relevance score for including content",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"timeout": {
"description": "Research timeout in milliseconds",
"maximum": 55000,
"minimum": 30000,
"type": "number"
},
"topic": {
"description": "Research topic or question",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}