-
Notifications
You must be signed in to change notification settings - Fork 47
Feat/codex max models #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
1cabd2e
c85dda1
a058c21
90d04fb
f57d8b9
eb71373
8bb8912
54f62d8
6b39290
aeb5197
5b5e1e9
9bdbc5f
b58f746
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -63,6 +63,86 @@ | |
| "store": false | ||
| } | ||
| }, | ||
| "gpt-5.1-codex-max": { | ||
| "name": "GPT 5.1 Codex Max (OAuth)", | ||
| "limit": { | ||
| "context": 272000, | ||
| "output": 128000 | ||
| }, | ||
| "options": { | ||
| "reasoningEffort": "high", | ||
| "reasoningSummary": "detailed", | ||
| "textVerbosity": "medium", | ||
| "include": [ | ||
| "reasoning.encrypted_content" | ||
| ], | ||
| "store": false | ||
| } | ||
| }, | ||
| "gpt-5.1-codex-max-low": { | ||
| "name": "GPT 5.1 Codex Max Low (OAuth)", | ||
| "limit": { | ||
| "context": 272000, | ||
| "output": 128000 | ||
| }, | ||
| "options": { | ||
| "reasoningEffort": "low", | ||
| "reasoningSummary": "detailed", | ||
| "textVerbosity": "medium", | ||
| "include": [ | ||
| "reasoning.encrypted_content" | ||
| ], | ||
| "store": false | ||
| } | ||
| }, | ||
| "gpt-5.1-codex-max-medium": { | ||
| "name": "GPT 5.1 Codex Max Medium (OAuth)", | ||
| "limit": { | ||
| "context": 272000, | ||
| "output": 128000 | ||
| }, | ||
| "options": { | ||
| "reasoningEffort": "medium", | ||
| "reasoningSummary": "detailed", | ||
| "textVerbosity": "medium", | ||
| "include": [ | ||
| "reasoning.encrypted_content" | ||
| ], | ||
| "store": false | ||
| } | ||
| }, | ||
| "gpt-5.1-codex-max-high": { | ||
| "name": "GPT 5.1 Codex Max High (OAuth)", | ||
| "limit": { | ||
| "context": 272000, | ||
| "output": 128000 | ||
| }, | ||
| "options": { | ||
| "reasoningEffort": "high", | ||
| "reasoningSummary": "detailed", | ||
| "textVerbosity": "medium", | ||
| "include": [ | ||
| "reasoning.encrypted_content" | ||
| ], | ||
| "store": false | ||
| } | ||
| }, | ||
| "gpt-5.1-codex-max-xhigh": { | ||
| "name": "GPT 5.1 Codex Max Extra High (OAuth)", | ||
| "limit": { | ||
| "context": 272000, | ||
| "output": 128000 | ||
| }, | ||
| "options": { | ||
| "reasoningEffort": "xhigh", | ||
| "reasoningSummary": "detailed", | ||
| "textVerbosity": "medium", | ||
| "include": [ | ||
| "reasoning.encrypted_content" | ||
| ], | ||
| "store": false | ||
| } | ||
| }, | ||
|
Comment on lines
+130
to
+145
|
||
| "gpt-5.1-codex-mini-medium": { | ||
| "name": "GPT 5.1 Codex Mini Medium (OAuth)", | ||
| "limit": { | ||
|
|
@@ -146,4 +226,4 @@ | |
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent output limit for
gpt-5.1-codex-max. The documentation in README.md and docs/getting-started.md specifies400000for the basegpt-5.1-codex-maxpreset, indicating expanded output capacity, but this configuration file uses128000. This should be updated to400000to match the documented capabilities and the other configuration files.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The correct value is 272000
OpenAIs context of 400000 comes from the combination of input and output
See here openai/codex#4728