***

title: clear_post_answer_verbs
slug: /reference/python/agents/agent-base/clear-post-answer-verbs
description: Remove all post-answer verbs from the call flow.
max-toc-depth: 3
---------------------

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

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

Remove all post-answer verbs.

## **Parameters**

None.

## **Returns**

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

## **Example**

```python {8}
from signalwire import AgentBase

agent = AgentBase(name="support", route="/support")
agent.set_prompt_text("You are a helpful assistant.")
agent.add_post_answer_verb("play", {
    "url": "say:Welcome to Acme Corporation."
})
agent.clear_post_answer_verbs()
agent.serve()
```