lean_ctx/core/verbosity/
mod.rs1mod recommender;
6mod runtime;
7mod signals;
8mod transcript;
9
10pub use recommender::VerbosityProfile;
11pub(crate) use recommender::recommend_level;
12pub(crate) use runtime::auto_apply_happened;
13pub(crate) use runtime::recommended_compression;
14pub(crate) use runtime::record_tool_call;
15#[cfg(test)]
16pub(crate) use signals::BehaviorSignal;
17pub(crate) use signals::extract_signals;
18pub(crate) use transcript::TranscriptEntry;
19#[cfg(test)]
20pub(crate) use transcript::analyze_transcript;