> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-codex-docs-audit-20260719-0149.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Deep research and analysis

> Combine Team modes, Workflow steps, grounding, and typed research outputs.

The gap between an agent using tools and a deep research system is orchestration, grounding, and inspectable deliverables. Agno Workflows define an explicit step graph. Run steps in parallel, in loops, or one after the other.

```python theme={null}
from agno.workflow import Parallel, Step, Workflow

# The analyst agents are defined separately. See the investment-team repo
# under Developer Resources for the full set.
investment_workflow = Workflow(
    id="investment-workflow",
    name="Investment Review Pipeline",
    steps=[
        Step(name="Market Assessment", agent=market_analyst),
        Parallel(
            Step(name="Fundamental Analysis", agent=financial_analyst),
            Step(name="Technical Analysis", agent=technical_analyst),
            name="Deep Dive",
        ),
        Step(name="Risk Assessment", agent=risk_officer),
        Step(name="Investment Memo", agent=memo_writer),
        Step(name="Committee Decision", agent=committee_chair),
    ],
)

result = investment_workflow.run("Run a full investment review on NVDA")
# result.content holds the Committee Decision.
# result.step_results holds the output from each outer step.
```

That is a five-step review with a parallel deep-dive. The same shape holds for other research mandates: swap the agents and the prompt. Attach a database to the Workflow to keep each run's input, step outputs, and final result.

## Guides

<CardGroup cols={2}>
  <Card title="Orchestration patterns" icon="diagram-project" href="/use-cases/deep-research/orchestration-patterns">
    Route, coordinate, broadcast, task, and explicit Workflow pipelines.
  </Card>

  <Card title="Parallel investigation" icon="arrows-split-up-and-left" href="/use-cases/deep-research/parallel-investigation">
    Fan specialists out at once, synthesize the results.
  </Card>

  <Card title="Grounding research" icon="book-open" href="/use-cases/deep-research/grounding-research">
    Mandate in the prompt, a library in RAG, prior work on disk.
  </Card>

  <Card title="Structured deliverable" icon="file-contract" href="/use-cases/deep-research/structured-deliverable">
    Return a typed decision and preserve the supporting memo.
  </Card>

  <Card title="Institutional learning" icon="arrows-rotate" href="/use-cases/deep-research/institutional-learning">
    Share reviewed learnings through a common store and namespace.
  </Card>

  <Card title="Serve and embed" icon="server" href="/use-cases/deep-research/serve-and-embed">
    Put the pipeline behind an API for Slack, cron, and dashboards.
  </Card>
</CardGroup>

## Developer Resources

* [Workflows](/workflows/overview)
* [Teams](/teams/overview)
* [Workflows cookbook](https://github.com/agno-agi/agno/tree/v2.7.4/cookbook/04_workflows)
* [Investment committee on GitHub](https://github.com/agno-agi/investment-team)
