//! Legacy `--chat` gateway gate. //! //! The kimi.com chat-product model picker (`/rest/modes`, `ChatModesManager`) //! was removed with the xAI proxy: those "modes" came from a kigi backend with //! no Kimi counterpart. Only the process-mode gate survives so the `--chat` //! frontend path stays a compile-time-off no-op across crates without a //! cross-crate churn to delete every reference. /// Process-wide flag set by the pager when started with `--chat`. pub const KIGI_CHAT_MODE_ENV: &str = "KIGI_CHAT_MODE"; /// True when the process is a gateway light-frontend (`--chat`) agent. /// Hard-off: the kigi chat-modes backend is gone, so this is always `false`. pub fn process_chat_mode_enabled() -> bool { false }