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

# add_internal_filler

> Add filler phrases for a specific internal/native SWAIG function and language.

[ref-agentbase]: /docs/server-sdks/reference/python/agents/agent-base

Add filler phrases for a specific internal/native SWAIG function and language.

## **Parameters**

Name of the SWAIG function (e.g., `"next_step"`, `"check_time"`).

Language code (e.g., `"en-US"`, `"es"`, `"fr"`).

List of filler phrases for this function and language. The AI randomly selects
from this list each time the function is invoked.

## **Returns**

[`AgentBase`][ref-agentbase] -- Returns self for method chaining.

## **Example**

```python {5,9}
from signalwire import AgentBase

agent = AgentBase(name="support", route="/support")
agent.set_prompt_text("You are a helpful assistant.")
agent.add_internal_filler(
    "next_step", "en-US",
    ["Moving to the next step...", "Great, let's continue..."]
)
agent.add_internal_filler(
    "next_step", "es",
    ["Pasando al siguiente paso...", "Continuemos..."]
)
agent.serve()
```