ai-agents-context 1.0.5

Dynamic context management for AI Agents framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Dynamic context management for AI Agents framework

mod builtin;
mod manager;
mod provider;
mod render;
mod source;

pub use manager::ContextManager;
pub use provider::ContextProvider;
pub use render::TemplateRenderer;
pub use source::{BuiltinSource, ContextSource, RefreshPolicy};