Add Cursor composer-2.5 models to known list - #10618
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: d89d12019f
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| const CURSOR_AGENT_PROVIDER_NAME: &str = "cursor-agent"; | ||
| pub const CURSOR_AGENT_DEFAULT_MODEL: &str = "auto"; | ||
| pub const CURSOR_AGENT_KNOWN_MODELS: &[&str] = &["auto", "composer-2", "composer-2-fast"]; | ||
| pub const CURSOR_AGENT_KNOWN_MODELS: &[&str] = &["auto", "composer-2", "composer-2-fast", "composer-2.5", "composer-2.5-fast"]; |
There was a problem hiding this comment.
Run rustfmt on the expanded model list
I checked .github/workflows/ci.yml and the Rust format job runs cargo fmt --check for code changes; this expanded one-line array is rewritten by rustfmt into multiple lines, so the PR will fail the formatting gate before it can merge. Please run cargo fmt after adding these entries.
Useful? React with 👍 / 👎.
- Add 'composer-2.5' and 'composer-2.5-fast' to CURSOR_AGENT_KNOWN_MODELS - Resolves aaif-goose#10575 Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
d89d120 to
25011c3
Compare
|
All CI passes, ready for review. |
Resolves #10575