Interface MetacognitiveSignal

Metacognitive signal produced by FOK detection.

interface MetacognitiveSignal {
    type: "low_confidence" | "tip_of_tongue" | "high_confidence";
    traceId: string;
    feelingOfKnowing: number;
    partialInfo?: string;
}

Properties

type: "low_confidence" | "tip_of_tongue" | "high_confidence"
traceId: string
feelingOfKnowing: number

Feeling-of-knowing score, 0 (no idea) to 1 (certain it exists).

partialInfo?: string

Partial info: entities, emotion, approximate timeframe.