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

# Interface AssistantMemoryOverview

```typescript
interface AssistantMemoryOverview {
    assistant: AssistantMemoryFileState;
    counts: { conclusions: number; episodes: number };
    searchBackend: "fts5" | "like";
    user: AssistantMemoryFileState;
}
```

Types: [assistant](#assistant), [AssistantMemoryFileState](core.AssistantMemoryFileState.md), [counts](#counts), [searchBackend](#searchbackend), [user](#user)

##### Index

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

[assistant](#assistant) [counts](#counts) [searchBackend](#searchbackend) [user](#user)

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

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

```typescript
assistant: AssistantMemoryFileState
```

Types: [AssistantMemoryFileState](core.AssistantMemoryFileState.md)

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

```typescript
counts: { conclusions: number; episodes: number }
```

### <a id="searchbackend"></a>searchBackend

```typescript
searchBackend: "fts5" | "like"
```

Active store search backend (`'like'` when SQLite FTS5 is unavailable).

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

```typescript
user: AssistantMemoryFileState
```

Types: [AssistantMemoryFileState](core.AssistantMemoryFileState.md)
