use crate::tui::app::state::AppState;
pub fn handle_watchdog_cancel(state: &mut AppState) {
state.processing = false;
state.streaming_text.clear();
state.clear_request_timing();
state.watchdog_notification = None;
state.status = "Request cancelled.".to_string();
}
pub fn handle_watchdog_dismiss(state: &mut AppState) {
state.watchdog_notification = None;
}