***

title: clearDynamicHints
slug: /reference/typescript/agents/function-result/clear-dynamic-hints
description: Remove all dynamically added speech recognition hints.
max-toc-depth: 3
---------------------

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

[add-dynamic-hints]: /docs/server-sdks/reference/typescript/agents/function-result/add-dynamic-hints

[functionresult]: /docs/server-sdks/reference/typescript/agents/function-result

Remove all dynamically added speech recognition hints. This clears every hint
that was previously added via [`addDynamicHints()`][add-dynamic-hints].
Static hints defined on the agent at configuration time are not affected.

## **Parameters**

None.

## **Returns**

[`FunctionResult`][functionresult] -- `this`, for chaining.

## **Example**

```typescript {4}
import { FunctionResult } from '@signalwire/sdk';

const result = new FunctionResult()
  .clearDynamicHints();
```