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

# start • AI Agent SDK

> start: Start agent execution with verbose output (beginner-friendly).

# start

<div className="flex items-center gap-2">
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**AgentTeam**](../classes/AgentTeam) class in the [**agents**](../modules/agents) module.

Start agent execution with verbose output (beginner-friendly).

Shows Rich panels with workflow progress when in TTY. Use .run() for
silent execution in production/scripts.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def start(content: Any, return_dict: Any, output: Any) -> Any
```

## Parameters

<ParamField query="content" type="Any" required={false}>
  Optional content to add to all tasks' context
</ParamField>

<ParamField query="return_dict" type="Any" required={false} default="False">
  If True, returns the full results dictionary
</ParamField>

<ParamField query="output" type="Any" required={false}>
  Output preset - "silent", "verbose", "normal", etc. Default in TTY: "verbose" (shows progress) Default non-TTY: "silent" \*\*kwargs: Additional arguments
</ParamField>

### Returns

<ResponseField name="Returns" type="Any">
  The result of the operation.
</ResponseField>

## Usage

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# Interactive - shows Rich panels
    agents = AgentManager(agents=[agent1, agent2])
    result = agents.start()  # Verbose output by default

    # Force silent mode
    result = agents.start(output="silent")
```

## Uses

* `track_agent_execution`
* `isatty`
* `Console`
* `Panel`
* `time_module.time`
* `Panel.fit`
* `console.status`
* `run_task`
* `get_task_result`
* `Markdown`

## Used By

* [`Agent.start`](../functions/Agent-start)
* [`AgentTeam.run`](../functions/AgentTeam-run)
* [`AutoAgents.start`](../functions/AutoAgents-start)

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/agents/agents.py#L1223">
  `praisonaiagents/agents/agents.py` at line 1223
</Card>
