Theia API Documentation v1.70.0
    Preparing search index...
    interface ChatSession {
        id: string;
        isActive: boolean;
        lastInteraction?: Date;
        model: ChatModel;
        pinnedAgent?: ChatAgent;
        rootSessionId?: string;
        title?: string;
    }
    Index

    Properties

    id: string
    isActive: boolean
    lastInteraction?: Date
    model: ChatModel
    pinnedAgent?: ChatAgent
    rootSessionId?: string

    ID of the root session in the delegation chain. For delegated sessions, this points to the topmost session where task contexts are stored.

    title?: string