> ## 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: Generate video silently (production use).

# run

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

> This is a method of the [**VideoAgent**](../classes/VideoAgent) class in the [**video\_agent**](../modules/video_agent) module.

Generate video silently (production use).

Unlike start(), this method is always silent regardless of verbose setting.
Use for programmatic/scripted usage.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def run(prompt: str) -> Any
```

## Parameters

<ParamField query="prompt" type="str" required={true}>
  Text description of the desired video \*\*kwargs: Additional parameters
</ParamField>

### Returns

<ResponseField name="Returns" type="Any">
  VideoObject (does not wait for completion)
</ResponseField>

## Uses

* `generate`

## 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/agent/video_agent.py#L646">
  `praisonaiagents/agent/video_agent.py` at line 646
</Card>
