mermaid-cli 0.3.10

Open-source AI pair programmer with agentic capabilities. Local-first with Ollama, native tool calling, and beautiful TUI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod cache_manager;
mod file_cache;
mod types;

pub use cache_manager::{CacheManager, CacheStats};
pub use file_cache::FileCache;
pub use types::{CacheEntry, CacheKey, CacheMetadata};

/// Initialize the cache system
pub fn init() -> anyhow::Result<CacheManager> {
    CacheManager::new()
}