-
Notifications
You must be signed in to change notification settings - Fork 6.8k
fix: typos in model picker #6859
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
Conversation
codex-rs/common/src/model_presets.rs
Outdated
| ], | ||
| is_default: false, | ||
| upgrade: Some(ModelUpgrade { | ||
| id: "gpt-5.1-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.
arcticfox?
41d9205 to
84ae009
Compare
| ], | ||
| ), | ||
| ( | ||
| "gpt-5.1", |
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.
keep it
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.
It's a bad merge that went in I guess the one above it it gpt5.1 as well
| .iter() | ||
| .filter(|preset| preset.upgrade.is_none()) | ||
| .filter(|preset| match auth_mode { | ||
| Some(AuthMode::ApiKey) => preset.show_in_picker && preset.id != "arcticfox", |
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.
not blocking: we should have a preset property for this
| codex_home, | ||
| None, | ||
| &[ConfigEdit::SetNoticeHideModelMigrationPrompt( | ||
| "hide_arcticfox_migration_prompt".to_string(), |
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.
this test already exists
| 1. Low Fast responses with lighter reasoning | ||
| 2. Medium (default) Balances speed and reasoning depth for everyday tasks | ||
| › 3. High (current) Maximizes reasoning depth for complex problems | ||
| ⚠ High reasoning effort can quickly consume Plus plan |
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.
Do we need the warning for xhigh?
codex-rs/tui/src/app.rs
Outdated
| app_event_tx: &AppEventSender, | ||
| auth_mode: Option<AuthMode>, | ||
| ) -> Option<AppExitInfo> { | ||
| if matches!(auth_mode, Some(AuthMode::ApiKey)) { |
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.
API has all 5.1 models now
| }); | ||
| } | ||
|
|
||
| fn reasoning_effort_label(effort: ReasoningEffortConfig) -> &'static str { |
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.
non blocking: toss this onto ReasoningEffortConfig ?
External (non-OpenAI) Pull Request Requirements
Before opening this Pull Request, please read the dedicated "Contributing" markdown file or your PR may be closed:
https://github.com/openai/codex/blob/main/docs/contributing.md
If your PR conforms to our contribution guidelines, replace this text with a detailed and high quality description of your changes.
Include a link to a bug report or enhancement request.