Interface ChatContextManager

interface ChatContextManager {
    onDidChange: Event<ChatAddVariableEvent | ChatRemoveVariableEvent | ChatSetVariablesEvent>;
    addVariables(...variables): void;
    clear(): void;
    deleteVariables(...indices): void;
    getVariables(): readonly AIVariableResolutionRequest[];
}

Implemented by

Properties

Methods