UNPKG

smart-ai-cache

Version:

🚀 Lightning-fast AI response caching with Redis support. Reduce OpenAI/Claude/Gemini API costs by 40-80% with sub-millisecond cache lookups.

9 lines (8 loc) • 437 B
export { AIResponseCache } from './core/cache.js'; export { OpenAICache } from './providers/openai.js'; export { AnthropicCache } from './providers/anthropic.js'; export { GoogleCache } from './providers/google.js'; export { MemoryStorage } from './storage/memory-storage.js'; export { RedisStorage } from './storage/redis-storage.js'; export type { StorageInterface } from './storage/redis-storage.js'; export * from './core/types.js';