We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b5b184 commit 29d154cCopy full SHA for 29d154c
codex-rs/README.md
@@ -32,7 +32,7 @@ The `config.toml` file supports the following options:
32
The model that Codex should use.
33
34
```toml
35
-model = "o3" # overrides the default of "codex-mini-latest"
+model = "o3" # overrides the default of "o4-mini"
36
```
37
38
### model_provider
codex-rs/core/src/flags.rs
@@ -3,7 +3,7 @@ use std::time::Duration;
3
use env_flags::env_flags;
4
5
env_flags! {
6
- pub OPENAI_DEFAULT_MODEL: &str = "codex-mini-latest";
+ pub OPENAI_DEFAULT_MODEL: &str = "o4-mini";
7
pub OPENAI_API_BASE: &str = "https://api.openai.com/v1";
8
9
/// Fallback when the provider-specific key is not set.
0 commit comments