> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/nemo/datadesigner/llms.txt.
> For full documentation content, see https://docs.nvidia.com/nemo/datadesigner/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemo/datadesigner/_mcp/server.

# data\_designer.config.utils.trace\_type

## Module Contents

### Classes

| Name                                                        | Description                                                       |
| ----------------------------------------------------------- | ----------------------------------------------------------------- |
| [`TraceType`](#data_designerconfigutilstrace_typetracetype) | Specifies the type of reasoning trace to capture for LLM columns. |

### API

```python
class data_designer.config.utils.trace_type.TraceType
```

**Bases**: `data_designer.config.utils.type_helpers.StrEnum`

Specifies the type of reasoning trace to capture for LLM columns.

Traces capture the conversation history during LLM generation, which is
useful for debugging, analysis, and understanding model behavior.

**Attributes:**

No trace is captured. This is the default.

Only the final assistant message is captured.

The full conversation history (system/user/assistant/tool)
is captured.

**Initialization:**

Initialize self.  See help(type(self)) for accurate signature.

```python
NONE = none
```

```python
LAST_MESSAGE = last_message
```

```python
ALL_MESSAGES = all_messages
```