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

# Render Presentation • AI Agent SDK

> render_presentation: Render a presentation to a target (chat/channel).

# render\_presentation

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

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

Render a presentation to a target (chat/channel).

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
async def render_presentation(target: str, presentation: 'MessagePresentation') -> Optional[str]
```

## Parameters

<ParamField query="target" type="str" required={true}>
  Target identifier (chat\_id, channel\_id, etc.)
</ParamField>

<ParamField query="presentation" type="MessagePresentation" required={true}>
  The presentation to render
</ParamField>

### Returns

<ResponseField name="Returns" type="Optional[str]">
  Message ID if sent successfully, None otherwise
</ResponseField>

## Source

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