> ## 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.

# run • AI Agent SDK

> run: Run agents silently (production use).

# run

<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.

Run agents silently (production use).

Unlike .start() which shows verbose output, .run() executes silently
for programmatic/production use.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def run(content: Any, return_dict: 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 \*\*kwargs: Additional arguments
</ParamField>

### Returns

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

## Uses

* `start`

## Used By

* [`Agent.run_until`](../functions/Agent-run_until)
* [`require_approval`](../functions/require_approval)
* [`HookRunner.execute_sync`](../functions/HookRunner-execute_sync)
* [`MCPToolRunner.run`](../functions/MCPToolRunner-run)
* [`Task.execute_callback_sync`](../functions/Task-execute_callback_sync)

## Source

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