interface AMDPredictionEvent {
    category: AMDCategory;
    delayMs: number;
    isMachine: boolean;
    rawResponse: string;
    reason: string;
    speechDurationMs: number;
    transcript: string;
    type: "amd_prediction";
}

Properties

category: AMDCategory
delayMs: number

Time between the end of user speech and the verdict emission (ms).

isMachine: boolean
rawResponse: string
reason: string
speechDurationMs: number

Total speech duration captured before the verdict was settled (ms).

transcript: string
type: "amd_prediction"