synaptic-cache 0.4.0

LLM response caching: InMemory, Semantic, CachedChatModel
Documentation
1
2
3
4
5
6
7
8
9
10
mod cached_model;
mod in_memory;
mod semantic;

pub use cached_model::CachedChatModel;
pub use in_memory::InMemoryCache;
pub use semantic::SemanticCache;

// Re-export LlmCache trait from core for backward compatibility
pub use synaptic_core::LlmCache;