Member Junction
    Preparing search index...

    Represents a saved conversation session with complete state information. Includes all messages, context data, and metadata for restoration.

    interface SavedConversation {
        advancedParams?: any;
        agentConfigurationId?: string;
        agentId: string;
        agentName: string;
        createdAt: Date;
        dataContext: Record<string, any>;
        id: string;
        messages: ConversationMessage[];
        name: string;
        selectedConfigurationId?: string;
        selectedModelId?: string;
        selectedVendorId?: string;
        skipValidation?: boolean;
        templateData: Record<string, any>;
        templateVariables?: Record<string, any>;
        updatedAt: Date;
    }
    Index

    Properties

    advancedParams?: any

    Advanced parameters used during the conversation (prompt mode)

    agentConfigurationId?: string

    Selected configuration ID (agent mode)

    agentId: string

    ID of the agent used in this conversation

    agentName: string

    Name of the agent for display purposes

    createdAt: Date

    When the conversation was first created

    dataContext: Record<string, any>

    Data context variables used during the conversation

    id: string

    Unique identifier for the saved conversation

    Complete message history

    name: string

    User-provided name for the conversation

    selectedConfigurationId?: string

    Selected configuration ID (prompt mode)

    selectedModelId?: string

    Selected model ID (prompt mode)

    selectedVendorId?: string

    Selected vendor ID (prompt mode)

    skipValidation?: boolean

    Skip validation setting (prompt mode)

    templateData: Record<string, any>

    Template data variables used during the conversation (agent mode)

    templateVariables?: Record<string, any>

    Template variables used during the conversation (prompt mode)

    updatedAt: Date

    When the conversation was last modified