SongGuess
    Preparing search index...

    Interface AgentMemoryScoredCandidate

    A scored memory candidate in a recall result.

    interface AgentMemoryScoredCandidate {
        id: string;
        score: number;
        sessionId: string | null;
        summary: string;
    }
    Index

    Properties

    id: string

    Candidate ID.

    score: number

    Relevance score (higher is better). Comparable only within a single query.

    sessionId: string | null

    Session that created this candidate, when known.

    summary: string

    Text summary.