***

title: say
slug: /reference/typescript/agents/livewire/agent-session/say
description: Queue text to be spoken by the agent.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Queue text to be spoken by the agent. Internally, this appends a prompt section
to the underlying SignalWire `AgentBase` so the AI speaks the provided text.

## **Signature**

```typescript {1}
say(text: string): void
```

## **Parameters**

<ParamField path="text" type="string" required={true} toc={true}>
  The text for the agent to speak.
</ParamField>

## **Returns**

`void`

## **Example**

```typescript {4}
const session = new AgentSession();
await session.start({ agent });

session.say('Your appointment is confirmed for tomorrow at 3 PM.');
```