deepseek-tui 0.8.25

Terminal UI for DeepSeek
// Used by the deferred context-limit handoff feature (#667). The implementation
// path is staged but not yet wired from the engine; suppress dead-code warnings
// rather than delete the table until the follow-up feature consumes it.
#[allow(dead_code)]
pub const THRESHOLDS: [(f32, &str); 3] = [
    (
        0.9,
        "Context at 90%: stop and write handoff to .deepseek/handoff.md now",
    ),
    (0.8, "Context at 80%: draft handoff to .deepseek/handoff.md"),
    (0.7, "Context at 70%: consider wrapping current sub-task"),
];
#[allow(dead_code)]
pub fn threshold_message(ratio: f32) -> Option<&'static str> {
    THRESHOLDS
        .iter()
        .find(|(t, _)| ratio >= *t)
        .map(|(_, m)| *m)
}