Theia API Documentation v1.66.0
    Preparing search index...
    interface ChatSessionStore {
        clearAllSessions(): Promise<void>;
        deleteSession(sessionId: string): Promise<void>;
        getSessionIndex(): Promise<ChatSessionIndex>;
        readSession(sessionId: string): Promise<undefined | SerializedChatData>;
        storeSessions(
            ...sessions: (ChatModel | ChatModelWithMetadata)[],
        ): Promise<void>;
    }

    Implemented by

    Index

    Methods