@contio/partner-sdk - v1.7.1
    Preparing search index...

    Interface ChatSession

    A chat session between a partner and the Contio AI agent. meeting_id is optional — sessions can be created without a meeting context.

    interface ChatSession {
        created_at: string;
        current_turn?: ChatTurn;
        id: string;
        meeting_id?: string | null;
        metadata?: Record<string, string>;
        status: ChatSessionStatus;
        title?: string | null;
        turn_count: number;
        turns?: ChatTurnListResponse;
        updated_at: string;
    }
    Index

    Properties

    created_at: string
    current_turn?: ChatTurn

    The first user turn; only present on the POST /sessions response

    id: string
    meeting_id?: string | null
    metadata?: Record<string, string>

    Partner-supplied arbitrary key-value metadata

    title?: string | null

    AI-generated or partner-supplied session title

    turn_count: number

    Total number of turns (user + agent) in this session

    Turn history; only present on GET /sessions/:id responses

    updated_at: string