interface ContextCacheManager {
    handleContextCaching(llmRequest: LlmRequest): Promise<CacheMetadata>;
    populateCacheMetadataInResponse(llmResponse: LlmResponse, cacheMetadata: CacheMetadata): void;
}

Implemented by

Methods