clearDynamicHints

View as MarkdownOpen in Claude

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

Parameters

None.

Returns

FunctionResultthis, for chaining.

Example

1import { FunctionResult } from '@signalwire/sdk';
2
3const result = new FunctionResult()
4 .clearDynamicHints();