Skip to main content

codetether_agent/session/helper/
mod.rs

1//! Internal helpers used by [`Session`](super::Session) and its prompt
2//! loops.
3//!
4//! These submodules exist so the Session facade in `src/session/mod.rs` can
5//! stay focused on the durable data model and public API while the agentic
6//! loop, compression strategy, error classification, tool-output routing,
7//! etc. live next to each other.
8
9pub mod archive;
10pub mod bootstrap;
11pub mod build;
12pub mod compression;
13pub mod confirmation;
14pub mod cost_guard;
15pub mod defaults;
16pub mod edit;
17pub mod error;
18pub mod experimental;
19pub mod loop_constants;
20pub mod markup;
21pub mod prompt;
22pub mod prompt_events;
23pub mod provider;
24pub mod request_state;
25pub mod router;
26pub mod runtime;
27pub mod stream;
28pub mod text;
29pub mod token;
30pub mod validation;