Interface AnswerResponseShape

interface AnswerResponseShape {
    raw: Record<string, unknown>;
    session_id: string;
    status: "active" | "finalized";
    questions_asked: number;
    is_complete: boolean;
    triage_level: null | TriageLevel;
    current_question: null | QuestionInfo;
    extracted_fields: Record<string, unknown>;
    red_flags_detected: string[];
    warnings: string[];
    meta: MetaInfo;
}

Hierarchy

  • RawMixin
    • AnswerResponseShape

Properties

raw: Record<string, unknown>
session_id: string
status: "active" | "finalized"
questions_asked: number
is_complete: boolean
triage_level: null | TriageLevel
current_question: null | QuestionInfo
extracted_fields: Record<string, unknown>
red_flags_detected: string[]
warnings: string[]
meta: MetaInfo