1//! Cache implementations for SimpleAgents.
2//!
3//! Provides various caching strategies for LLM responses.
45mod memory;
6mod noop;
78pub use memory::InMemoryCache;
9pub use noop::NoOpCache;
1011// Re-export the Cache trait
12pub use simple_agent_type::cache::Cache;