dashboard-react
    Preparing search index...

    Interface Conversation

    Conversation thread persisted in the dashboard chat store.

    interface Conversation {
        id: string;
        name: string;
        modelId: string;
        createdAt: number;
        updatedAt: number;
        messages: ChatMessage[];
        summary?: string;
        originNodeId?: string;
    }
    Index

    Properties

    id: string
    name: string
    modelId: string
    createdAt: number
    updatedAt: number
    messages: ChatMessage[]
    summary?: string
    originNodeId?: string