From abd517091f02bb821e989886eeedd51ce5bc3ada Mon Sep 17 00:00:00 2001 From: rakesh-oai Date: Tue, 7 Oct 2025 17:27:27 -0700 Subject: [PATCH] remove experimental prefix (#4907) # External (non-OpenAI) Pull Request Requirements Before opening this Pull Request, please read the dedicated "Contributing" markdown file or your PR may be closed: https://github.com/openai/codex/blob/main/docs/contributing.md If your PR conforms to our contribution guidelines, replace this text with a detailed and high quality description of your changes. --- codex-rs/cli/src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/codex-rs/cli/src/main.rs b/codex-rs/cli/src/main.rs index 7e0036a5..d8898232 100644 --- a/codex-rs/cli/src/main.rs +++ b/codex-rs/cli/src/main.rs @@ -157,9 +157,7 @@ struct LoginCommand { )] api_key: Option, - /// EXPERIMENTAL: Use device code flow (not yet supported) - /// This feature is experimental and may changed in future releases. - #[arg(long = "experimental_use-device-code", hide = true)] + #[arg(long = "use-device-code")] use_device_code: bool, /// EXPERIMENTAL: Use custom OAuth issuer base URL (advanced)