> ## 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 Turn • AI Agent SDK

> run_turn: Execute a single turn and return result.

# run\_turn

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

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

Execute a single turn and return result.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
async def run_turn(prompt: str) -> RuntimeResult
```

## Parameters

<ParamField query="prompt" type="str" required={true}>
  User prompt/query
</ParamField>

### Returns

<ResponseField name="Returns" type="RuntimeResult">
  RuntimeResult with response content and metadata
</ResponseField>

## Source

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