***

title: enableExtensiveData
slug: /reference/typescript/agents/function-result/enable-extensive-data
description: Send full data to the LLM for the current turn only.
max-toc-depth: 3
---------------------

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

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

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**

<ParamField path="enabled" type="boolean" default="true" toc={true}>
  `true` to send extensive data this turn, `false` to disable.
</ParamField>

## **Returns**

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

## **Example**

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

const result = new FunctionResult()
  .enableExtensiveData(true);
```