***

title: enable_extensive_data
slug: /reference/python/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/python/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="bool" default="True" toc={true}>
  `True` to send extensive data this turn, `False` to disable.
</ParamField>

## **Returns**

[`FunctionResult`][functionresult] — self, for chaining.

## **Example**

```python {11}
from signalwire import AgentBase
from signalwire import FunctionResult

agent = AgentBase(name="my-agent", route="/agent")
agent.set_prompt_text("You are a helpful assistant.")

@agent.tool(name="return_large_result", description="Return detailed search results")
def return_large_result(args, raw_data):
    return (
        FunctionResult("Here are the detailed search results.")
        .enable_extensive_data(True)
    )

agent.serve()
```