Interface MemoryProvenance

interface MemoryProvenance {
    sourceType: MemorySourceType;
    sourceId?: string;
    sourceTimestamp: number;
    confidence: number;
    verificationCount: number;
    lastVerifiedAt?: number;
    contradictedBy?: string[];
}

Properties

sourceType: MemorySourceType
sourceId?: string

Back-reference to originating conversation, tool call, etc.

sourceTimestamp: number

Timestamp of the original source information.

confidence: number

0-1 confidence we have in this memory's accuracy.

verificationCount: number

How many times this memory has been externally confirmed.

lastVerifiedAt?: number
contradictedBy?: string[]

IDs of other traces that contradict this one.