From 394e53864013a25dc60cc924c62a58385b0a4fe7 Mon Sep 17 00:00:00 2001 From: pash-openai Date: Wed, 4 Mar 2026 20:06:35 -0800 Subject: [PATCH] [core] Enable fast mode by default (#13450) Co-authored-by: Codex --- codex-rs/core/src/features.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/core/src/features.rs b/codex-rs/core/src/features.rs index dbc4e70685..8aa5e181d4 100644 --- a/codex-rs/core/src/features.rs +++ b/codex-rs/core/src/features.rs @@ -708,8 +708,8 @@ pub const FEATURES: &[FeatureSpec] = &[ FeatureSpec { id: Feature::FastMode, key: "fast_mode", - stage: Stage::UnderDevelopment, - default_enabled: false, + stage: Stage::Stable, + default_enabled: true, }, FeatureSpec { id: Feature::VoiceTranscription,