UNPKG

@nomyx/assistant

Version:

A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)

11 lines (10 loc) 354 B
import { ProviderResponse } from '../../../types/chat'; import { AzureCacheKey } from './types'; export declare class AzureCache { private cache; set(key: AzureCacheKey, value: ProviderResponse): void; get(key: AzureCacheKey): ProviderResponse | undefined; has(key: AzureCacheKey): boolean; clear(): void; private stringifyKey; }