***

title: clearPostAnswerVerbs
slug: /reference/typescript/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/typescript/agents/agent-base

Remove all post-answer verbs.

## **Parameters**

None.

## **Returns**

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

## **Example**

```typescript {8}
import { AgentBase } from '@signalwire/sdk';

const agent = new AgentBase({ name: 'support', route: '/support' });
agent.setPromptText('You are a helpful assistant.');
agent.addPostAnswerVerb('play', {
  url: 'say:Welcome to Acme Corporation.',
});
agent.clearPostAnswerVerbs();
await agent.serve();
```