Member Junction
    Preparing search index...

    Interface RealtimeSessionResult

    The outcome of a completed realtime session run.

    interface RealtimeSessionResult {
        ErrorMessage?: string;
        FinalUsage: RealtimeUsage;
        Success: boolean;
        TranscriptTurnCount: number;
    }
    Index

    Properties

    ErrorMessage?: string

    An error message if the session failed to start or finalize.

    FinalUsage: RealtimeUsage

    The final accumulated usage that was checkpointed at close.

    Success: boolean

    Whether the session ran to a clean close.

    TranscriptTurnCount: number

    Total transcript turns persisted during the session.