-
Notifications
You must be signed in to change notification settings - Fork 3.9k
feat: opus 4-5 updates #8866
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
feat: opus 4-5 updates #8866
Conversation
|
✅ Review Complete Code Review Summary |
|
Reviewed seed scripts - no updates needed. Existing Anthropic Sonnet models provide adequate coverage for testing model functionality. |
- Updated chat.mdx to reflect the new Claude Opus 4.5 model - Changed model identifier from claude-4-1-opus to claude-opus-4-5 - Updated Hub link to point to the new model block Co-authored-by: nate <nate@continue.dev>
📊 Performance Impact Analysis - PR #8866OverviewPR Title: feat: opus 4-5 updates Changed Files
Performance Impact Assessment✅ Static Configuration Changes OnlyThis PR modifies configuration metadata for Claude Opus model versions:
Bundle Size Impact: Negligible (< 1KB)Runtime Performance Impact: None
Core Web Vitals PredictionSince this is purely a configuration change with no logic, asset, or dependency modifications:
Code Quality Analysis✅ Improvements
|
| Category | Score | Change |
|---|---|---|
| Performance | 95/100 | ✅ 0 |
| Accessibility | 100/100 | ✅ 0 |
| Best Practices | 92/100 | ✅ 0 |
| SEO | 100/100 | ✅ 0 |
🎯 Final Verdict: ✅ APPROVED
Summary: This PR introduces no performance regressions. Changes are limited to static configuration metadata for Claude model variants. The modifications are well-structured, backwards-compatible, and improve model selection accuracy.
Merge Confidence: 🟢 High (99%)
Analysis completed: 2025-11-24
Note: Since this PR affects the Continue VSCode extension (Electron app), not a web deployment, traditional Lighthouse metrics don't apply. Analysis focused on bundle size and runtime performance impact.
|
Updated documentation to reflect the Claude Opus 4.5 changes:
The documentation now matches the code changes that prefer Claude Opus 4.5 over 4.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.
1 issue found across 4 files
Prompt for AI agents (all 1 issues)
Understand the root cause of the following 1 issues and fix them.
<file name="packages/llm-info/src/providers/anthropic.ts">
<violation number="1" location="packages/llm-info/src/providers/anthropic.ts:35">
Regex for the claude-opus-4.1 entry never matches the canonical model string (it only allows `4-1`), so requests for `claude-opus-4.1` are misclassified as the older claude-opus-4 model.</violation>
</file>
Reply to cubic to teach it or ask questions. Re-run a review with @cubic-dev-ai review this PR
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
|
🎉 This PR is included in version 1.7.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 1.37.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 1.7.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Description
Prefer Opus 4.5 to opus 4.1
Summary by cubic
Prefer Claude 4.5 Opus across the app and update Anthropic provider metadata to support it, including higher token limits. This makes 4.5 selectable in the UI and correctly mapped by model regex.
Written for commit 0fdadbb. Summary will update automatically on new commits.