theway-core 0.1.21

theway core — stateful agent runtime + harness (Agent loop, skills, prompt templates, sessions, compaction) on top of theway-llm-provider.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Auto-compaction + branch summarization. TODO: 1:1 port of
//! `packages/agent/src/harness/compaction/`. Pending until Agent + session land.

pub mod algorithm;
pub mod branch_summarization;
pub mod compaction;
pub mod estimate;
pub mod triggers;
pub mod utils;

pub use algorithm::{
    BuiltinCompactAlgorithm, CompactAlgorithm, CompactAlgorithmRegistry, SummarizeRequest,
    SummaryOutcome,
};
pub use compaction::{CompactionSettings, DEFAULT_COMPACTION_SETTINGS};