> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pilottai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Research analyst

# Research Analyst Agent Example

Simple example showing how to set up a research analyst agent with PilottAI framework.

## Setup

```bash theme={null}
pip install pilott
```

## Example Usage

```python theme={null}
from pilottai import Serve
from pilottai.core import AgentConfig, LLMConfig

# Initialize
pilott = Serve(name="ResearchAnalyst")

# Create agent
research_agent = await pilott.add_agent(
    title="research_analyst",
    goal="Conduct thorough research and provide insights",
    tools=["data_analyzer", "research_synthesizer"]
)

# Analyze data
job = {
    "type": "analyze_data",
    "data_source": "market_survey_2024",
    "analysis_type": "trend_analysis"
}

result = await pilott.execute([job])
```

## Tools

* data\_analyzer: Analyze research data
* research\_synthesizer: Synthesize research findings

## Features

* Data analysis
* Research synthesis
* Trend identification
* Insight generation

## Code

Ready to use code [research\_analyst.py](../../pilott/agents/research_analyst.py)
