Files
vscode/extensions/copilot/test/base/chatMLCache.ts
T
João Moreno 0562b55dde propagate test run info to caches (#201)
* propagate test run info to caches

* fix tests
2025-07-11 12:59:21 +00:00

14 lines
764 B
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { SQLiteSlottedCache } from './cache';
import { CacheableChatRequest, CachedResponse, IChatMLCache } from './cachingChatMLFetcher';
import { CurrentTestRunInfo } from './simulationContext';
export class ChatMLSQLiteCache extends SQLiteSlottedCache<CacheableChatRequest, CachedResponse> implements IChatMLCache {
constructor(salt: string, info: CurrentTestRunInfo) {
super('request', salt, info);
}
}