***

title: setExitFillers
slug: /reference/typescript/agents/context-builder/context/set-exit-fillers
description: Set all exit fillers at once.
max-toc-depth: 3
---------------------

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

[ref-context]: /docs/server-sdks/reference/typescript/agents/context-builder/context

Set all exit fillers at once. Exit fillers are spoken when the AI navigates away
from this context.

## **Parameters**

<ParamField path="fillers" type={"Record<string, string[]>"} required={true} toc={true}>
  Dictionary mapping language codes (or `"default"`) to lists of filler phrases.
</ParamField>

## **Returns**

[`Context`][ref-context] -- Self for method chaining.

## **Example**

```typescript {7-10}
import { ContextBuilder } from '@signalwire/sdk';

const builder = new ContextBuilder();
builder.addContext('default').addStep('menu').setText('Ask what the caller needs.');

const support = builder.addContext('support');
support.setExitFillers({
  'en-US': ['Thank you for contacting support.', 'Glad I could help.'],
  'default': ['Thank you.'],
});
support.addStep('diagnose').setText('Understand the customer\'s issue.');
```