Skip to main content

synaptic_cache/
lib.rs

1mod cached_model;
2mod in_memory;
3mod semantic;
4
5pub use cached_model::CachedChatModel;
6pub use in_memory::InMemoryCache;
7pub use semantic::SemanticCache;
8
9// Re-export LlmCache trait from core for backward compatibility
10pub use synaptic_core::LlmCache;