***

title: add_exit_filler
slug: /reference/python/agents/context-builder/context/add-exit-filler
description: Add exit fillers for a specific language.
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/python/agents/context-builder/context

Add exit fillers for a specific language.

## **Parameters**

<ParamField path="language_code" type="str" required={true} toc={true}>
  Language code (e.g., `"en-US"`, `"es"`) or `"default"` for a catch-all.
</ParamField>

<ParamField path="fillers" type="list[str]" required={true} toc={true}>
  List of filler phrases.
</ParamField>

## **Returns**

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

## **Example**

```python {9}
from signalwire import AgentBase

agent = AgentBase(name="my-agent", route="/agent")

contexts = agent.define_contexts()
contexts.add_context("default").add_step("menu").set_text("Ask what the caller needs.")

support = contexts.add_context("support")
support.add_exit_filler("en-US", [
    "Thank you for contacting support.",
    "Glad I could help."
])
support.add_step("diagnose").set_text("Understand the customer's issue.")

agent.serve()
```