enableExtensiveData

View as MarkdownOpen in Claude

Send full data to the LLM for the current turn only. On subsequent turns, the full data is replaced with a smaller summary. Useful for one-time data-heavy responses that would otherwise bloat the conversation history.

Parameters

enabled
booleanDefaults to true

true to send extensive data this turn, false to disable.

Returns

FunctionResultthis, for chaining.

Example

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