@bootdesk/js-web-adapter-core
    Preparing search index...

    Interface ChatResponse

    interface ChatResponse {
        attachments?: {
            mime_type?: string;
            name?: string;
            size?: number;
            type: string;
            url: string;
        }[];
        events?: Record<string, unknown>[];
        id: string;
        role: "assistant" | "user";
        text: string;
    }
    Index

    Properties

    attachments?: {
        mime_type?: string;
        name?: string;
        size?: number;
        type: string;
        url: string;
    }[]
    events?: Record<string, unknown>[]
    id: string
    role: "assistant" | "user"
    text: string