ISPO SDK
    Preparing search index...

    Interface AssistantMemoryEpisode

    Markdown

    One per-session episode row, with full provenance (source project, session, trust class, timestamps). Timestamps are epoch milliseconds.

    interface AssistantMemoryEpisode {
        agentId: string | null;
        endedAt: number | null;
        id: number;
        lastOutcome: string | null;
        projectId: string | null;
        projectName: string | null;
        sessionId: string;
        startedAt: number | null;
        status: AssistantMemoryEpisodeStatus;
        summary: string | null;
        trustClass: string | null;
        turnCount: number;
        updatedAt: number;
    }
    Index
    agentId: string | null
    endedAt: number | null
    id: number
    lastOutcome: string | null
    projectId: string | null
    projectName: string | null
    sessionId: string
    startedAt: number | null
    summary: string | null
    trustClass: string | null
    turnCount: number
    updatedAt: number