***

title: say
slug: /reference/typescript/agents/function-result/say
description: Make the AI agent speak specific text immediately.
max-toc-depth: 3
---------------------

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

[functionresult]: /docs/server-sdks/reference/typescript/agents/function-result

Make the AI agent speak specific text immediately, bypassing the normal LLM
response flow. The text is spoken in the agent's configured voice.

## **Parameters**

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

## **Returns**

[`FunctionResult`][functionresult] -- `this`, for chaining.

## **Example**

```typescript {4}
import { FunctionResult } from '@signalwire/sdk';

const result = new FunctionResult()
  .say('Your appointment is confirmed for tomorrow at 3 PM.');
```