Path: blob/main/extensions/copilot/test/base/chatMLCache.ts
13389 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*--------------------------------------------------------------------------------------------*/4import { SQLiteSlottedCache } from './cache';5import { CacheableChatRequest, CachedResponse, IChatMLCache } from './cachingChatMLFetcher';6import { CurrentTestRunInfo } from './simulationContext';78export class ChatMLSQLiteCache extends SQLiteSlottedCache<CacheableChatRequest, CachedResponse> implements IChatMLCache {9constructor(salt: string, info: CurrentTestRunInfo) {10super('request', salt, info);11}12}131415