Compare commits

...

2 Commits

Author SHA1 Message Date
Kazuhiro Sera
5b9aa9acf2 Add a link to Github releases to CHANGELOG.md
Since the file is no longer maintained, we should navigate visitors to the GitHub releases page.
2025-08-25 09:44:18 +09:00
ae
8b49346657 fix: update gpt-5 stats (#2649)
- To match what's on <https://platform.openai.com/docs/models/gpt-5>.
2025-08-24 16:45:41 -07:00
2 changed files with 7 additions and 4 deletions

View File

@@ -2,6 +2,9 @@
You can install any of these versions: `npm install -g codex@version`
> [!IMPORTANT]
> This file is no longer maintained. For newer release notes, visit https://github.com/openai/codex/releases instead.
## `0.1.2505172129`
### 🪲 Bug Fixes

View File

@@ -79,13 +79,13 @@ pub(crate) fn get_model_info(model_family: &ModelFamily) -> Option<ModelInfo> {
}),
"gpt-5" => Some(ModelInfo {
context_window: 200_000,
max_output_tokens: 100_000,
context_window: 400_000,
max_output_tokens: 128_000,
}),
_ if slug.starts_with("codex-") => Some(ModelInfo {
context_window: 200_000,
max_output_tokens: 100_000,
context_window: 400_000,
max_output_tokens: 128_000,
}),
_ => None,