> ISPO SDK documentation. [HTML](https://ispo.ai/docs/interfaces/core.AssistantMemoryTraceToolCall.html) · [Documentation index](https://ispo.ai/docs/llms.txt)

# Interface AssistantMemoryTraceToolCall

One tool call replayed from the session's durable transcript record, for the debug trace. Input/output are clamped strings — display-only evidence, never re-parseable authority.

```typescript
interface AssistantMemoryTraceToolCall {
    input: string | null;
    name: string;
    output: string | null;
    status: string;
    turnIndex: number;
}
```

Types: [input](#input), [name](#name), [output](#output), [status](#status), [turnIndex](#turnindex)

##### Index

### <a id="properties"></a>Properties

[input](#input) [name](#name) [output](#output) [status](#status) [turnIndex](#turnindex)

## <a id="properties-1"></a>Properties

### <a id="input"></a>input

```typescript
input: string | null
```

### <a id="name"></a>name

```typescript
name: string
```

### <a id="output"></a>output

```typescript
output: string | null
```

### <a id="status"></a>status

```typescript
status: string
```

### <a id="turnindex"></a>turnIndex

```typescript
turnIndex: number
```
