Research Agent Workflow

Command Palette

Search for a command to run...

Back

Research Agent Workflow

v1.0.0

A parallel research workflow that gathers information from multiple sources simultaneously.

researchparalleldata-collection
Workflow Structure
Nodes4
Edges4
Formatpython
TaskGather research data from multiple sources in parallel
Content
Research Agent Workflow
=======================
Gathers research data from multiple sources in parallel, then synthesizes the results.

Entry: planner

Nodes:
  - id: planner
    type: agent
    name: Research Planner
    description: "Plans research approach and identifies information sources"
    
  - id: web-search
    type: agent
    name: Web Search Agent
    description: "Searches the web for relevant information"
    
  - id: doc-search
    type: agent
    name: Document Search
    description: "Searches through documents and knowledge bases"
    
  - id: synthesizer
    type: agent
    name: Result Synthesizer
    description: "Combines and summarizes findings"

Edges:
  - source: planner
    target: web-search
    
  - source: planner
    target: doc-search
    
  - source: web-search
    target: synthesizer
    
  - source: doc-search
    target: synthesizer
Related Content