-
Notifications
You must be signed in to change notification settings - Fork 2.7k
chore: remove codex models from supported models #342
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
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 |
|---|---|---|
|
|
@@ -50,10 +50,6 @@ strix --target ./your-app | |
| | GPT-5.2 | `strix/gpt-5.2` | | ||
| | GPT-5.1 | `strix/gpt-5.1` | | ||
| | GPT-5 | `strix/gpt-5` | | ||
|
Comment on lines
50
to
52
Contributor
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.
Prompt To Fix With AIThis is a comment left during a code review.
Path: docs/llm-providers/models.mdx
Line: 50-52
Comment:
`docs/llm-providers/overview.mdx:52` still mentions "GPT-5 and Codex models" - should update to just "GPT-5 models"
How can I resolve this? If you propose a fix, please make it concise.
Comment on lines
50
to
52
Contributor
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. PR description mentions "removing from docs and config.yaml" but no Prompt To Fix With AIThis is a comment left during a code review.
Path: docs/llm-providers/models.mdx
Line: 50-52
Comment:
PR description mentions "removing from docs and config.yaml" but no `config.yaml` file was modified in this commit
How can I resolve this? If you propose a fix, please make it concise. |
||
| | GPT-5.2 Codex | `strix/gpt-5.2-codex` | | ||
| | GPT-5.1 Codex Max | `strix/gpt-5.1-codex-max` | | ||
| | GPT-5.1 Codex | `strix/gpt-5.1-codex` | | ||
| | GPT-5 Codex | `strix/gpt-5-codex` | | ||
|
|
||
|
|
||
|
|
||
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.
Codex models removed from this table but still defined in
strix/llm/utils.pylines 40-43 inSTRIX_MODEL_MAP. Users can still access these models via the code even though they're not documented.Prompt To Fix With AI