mirror of
https://github.com/openai/codex.git
synced 2026-05-24 13:04:29 +00:00
Remove exec research preview banner wording (#21683)
## Why `codex exec` still included the stale `research preview` label in its human-readable startup banner, which makes the CLI look older and less current than it is. Fixes #21444. ## What Changed Removed the hard-coded ` (research preview)` suffix from the `OpenAI Codex v<version>` startup banner in `codex-rs/exec/src/event_processor_with_human_output.rs`. ## Validation Local validation was not required for this one-line startup banner text cleanup.
This commit is contained in:
@@ -219,7 +219,7 @@ impl EventProcessor for EventProcessorWithHumanOutput {
|
||||
session_configured_event: &SessionConfiguredEvent,
|
||||
) {
|
||||
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||
eprintln!("OpenAI Codex v{VERSION} (research preview)\n--------");
|
||||
eprintln!("OpenAI Codex v{VERSION}\n--------");
|
||||
for (key, value) in config_summary_entries(config, session_configured_event) {
|
||||
eprintln!("{} {}", format!("{key}:").style(self.bold), value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user