Skip to main content

aster/agents/context/
mod.rs

1// Agent Context Management Module
2//
3// This module provides context management for agents, including:
4// - Context creation and inheritance
5// - Context compression and filtering
6// - Context persistence and loading
7// - Context isolation and sandboxing
8
9mod isolation;
10mod manager;
11mod types;
12
13#[cfg(test)]
14mod isolation_property_tests;
15
16pub use isolation::*;
17pub use manager::*;
18pub use types::*;