dashboard-react
    Preparing search index...

    Interface ChatState

    interface ChatState {
        conversations: Record<string, Conversation>;
        activeConversationId: string | null;
        selectedModelId: string | null;
        selectedTranscriptionModelId: string | null;
        selectedSpeechModelId: string | null;
        selectedVoice: string | null;
        autoSpeakAssistant: boolean;
        realtimeVoiceEnabled: boolean;
        autoSubmitVoice: boolean;
        modelToConversationId: Record<string, string>;
    }
    Index

    Properties

    conversations: Record<string, Conversation>
    activeConversationId: string | null
    selectedModelId: string | null
    selectedTranscriptionModelId: string | null
    selectedSpeechModelId: string | null
    selectedVoice: string | null
    autoSpeakAssistant: boolean
    realtimeVoiceEnabled: boolean
    autoSubmitVoice: boolean
    modelToConversationId: Record<string, string>