1// src/core/cache/mod.rs 2//! LLM call cache 3//! 4//! In-memory caching to reduce repeated LLM calls. 5//! Supports TTL (expiry) and a maximum-entry limit. 6 7pub mod llm_cache; 8 9pub use llm_cache::{CacheConfig, CacheError, CachedLLMResult, LLMCache};