-
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 10 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 | ||
| } | ||
| }, | ||
|
Comment on lines
+66
to
+81
|
||
| "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 @@ | |
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -57,9 +57,17 @@ Controls computational effort for reasoning. | |
| - `medium` - Balanced (default) | ||
| - `high` - Maximum code quality | ||
|
|
||
| **GPT-5.1-Codex-Max Values:** | ||
| - `none` - No dedicated reasoning phase | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Surprisingly, it works with GPT-5.1, while the documented |
||
| - `low` - Light reasoning | ||
| - `medium` - Balanced | ||
| - `high` - Deep reasoning (default for this family) | ||
| - `xhigh` - Extra depth for long-horizon tasks | ||
|
|
||
| **Notes**: | ||
| - `minimal` auto-converts to `low` for gpt-5-codex (API limitation) | ||
| - `gpt-5-codex-mini*` and `gpt-5.1-codex-mini*` only support `medium` or `high`; lower settings are clamped to `medium` | ||
| - `minimal` auto-converts to `low` for Codex models | ||
| - `gpt-5-codex-mini*` and `gpt-5.1-codex-mini*` only support `medium` or `high`; lower settings are clamped to `medium` and `xhigh` downgrades to `high` | ||
| - Codex Max supports `none` and `xhigh` and defaults to `high` when not specified | ||
|
|
||
| **Example:** | ||
| ```json | ||
|
|
@@ -76,7 +84,10 @@ Controls reasoning summary verbosity. | |
|
|
||
| **Values:** | ||
| - `auto` - Automatically adapts (default) | ||
| - `concise` - Short summaries | ||
| - `detailed` - Verbose summaries | ||
| - `off` - Disable reasoning summary (Codex Max supports) | ||
| - `on` - Force enable summary (Codex Max supports) | ||
|
|
||
| **Example:** | ||
| ```json | ||
|
|
@@ -96,8 +107,8 @@ Controls output length. | |
| - `medium` - Balanced (default) | ||
| - `high` - Verbose | ||
|
|
||
| **GPT-5-Codex:** | ||
| - `medium` only (API limitation) | ||
| **GPT-5-Codex / Codex Max:** | ||
| - `medium` or `high` (Codex Max defaults to `medium`) | ||
|
|
||
| **Example:** | ||
| ```json | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.