agent-core-runtime 0.6.0

Core runtime for agent-core - LLM orchestration, tools, and permissions (no TUI dependencies)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! LLM session management with automatic context compaction.

mod compactor;
mod config;
mod convert;
mod manager;
mod session;

pub use compactor::{
    AsyncCompactor, CompactionError, CompactionResult, Compactor, CompactorConfigError,
    LLMCompactor, LLMCompactorConfig, ThresholdCompactor, ToolCompaction,
};
pub use config::{CompactionConfig, CompactorType, LLMProvider, LLMSessionConfig};
pub use manager::LLMSessionManager;
pub use session::{CompactResult, LLMSession, SessionStatus, TokenUsage};