***

title: clearPreAnswerVerbs
slug: /reference/typescript/agents/agent-base/clear-pre-answer-verbs
description: Remove all pre-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 pre-answer verbs.

## **Parameters**

None.

## **Returns**

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

## **Example**

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

const agent = new AgentBase({ name: 'support', route: '/support' });
agent.setPromptText('You are a helpful assistant.');
agent.addPreAnswerVerb('play', { urls: ['ring:us'], auto_answer: false });
agent.clearPreAnswerVerbs();
await agent.serve();
```