Skip to main content

simple_agents_cache/
lib.rs

1//! Cache implementations for SimpleAgents.
2//!
3//! Provides various caching strategies for LLM responses.
4
5mod memory;
6mod noop;
7
8pub use memory::InMemoryCache;
9pub use noop::NoOpCache;
10
11// Re-export the Cache trait
12pub use simple_agent_type::cache::Cache;