MAIDR Documentation - v3.39.0
    Preparing search index...

    Interface Message

    Chat message in the conversation history with metadata and status.

    interface Message {
        id: string;
        text: string;
        isUser: boolean;
        model?: Llm;
        timestamp: string;
        status: Status;
        modelSelections?: { modelKey: Llm; name: string; version: string }[];
        isWelcomeMessage?: boolean;
    }
    Index

    Properties

    id: string
    text: string
    isUser: boolean
    model?: Llm
    timestamp: string
    status: Status
    modelSelections?: { modelKey: Llm; name: string; version: string }[]
    isWelcomeMessage?: boolean