Path: blob/main/src/vs/workbench/contrib/chat/test/common/mockChatVariables.ts
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { IChatVariablesService, IDynamicVariable } from '../../common/chatVariables.js';6import { IToolAndToolSetEnablementMap } from '../../common/languageModelToolsService.js';78export class MockChatVariablesService implements IChatVariablesService {9_serviceBrand: undefined;1011getDynamicVariables(sessionId: string): readonly IDynamicVariable[] {12return [];13}1415getSelectedToolAndToolSets(sessionId: string): IToolAndToolSetEnablementMap {16return new Map();17}1819}202122