-
Notifications
You must be signed in to change notification settings - Fork 5
Upgrade vision model to Qwen3-VL 30B #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
Conversation
Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
Gemma 3 27B remains available in the advanced menu. Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
WalkthroughTwo configuration adjustments to the Qwen3-VL 30B model in ModelSelector: the model's access requirement lowered from Pro to Starter tier with badge simplification, and the image category mapping reassigned from gemma-3-27b to qwen3-vl-30b. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes
Possibly related PRs
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
🧰 Additional context used📓 Path-based instructions (1)**/*.{ts,tsx}📄 CodeRabbit inference engine (CLAUDE.md)
Files:
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
🔇 Additional comments (2)
Comment |
Deploying maple with
|
| Latest commit: |
e7454f5
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://a363bbc0.maple-ca8.pages.dev |
| Branch Preview URL: | https://upgrade-vision-model.maple-ca8.pages.dev |
Greptile OverviewGreptile SummaryChanged the default vision model for image analysis from Gemma 3 27B to Qwen3-VL 30B and made it accessible to all paid users (Starter plan and above). Changes:
The changes are minimal, well-targeted, and preserve backward compatibility by keeping Gemma 3 27B available. Confidence Score: 5/5
Important Files ChangedFile Analysis
Sequence DiagramsequenceDiagram
participant User
participant ModelSelector
participant hasAccessToModel
participant BillingStatus
User->>ModelSelector: Upload image to chat
ModelSelector->>ModelSelector: chatHasImages = true
ModelSelector->>ModelSelector: Check CATEGORY_MODELS.image
Note over ModelSelector: CATEGORY_MODELS.image = "qwen3-vl-30b"
ModelSelector->>hasAccessToModel: Check access to "qwen3-vl-30b"
hasAccessToModel->>BillingStatus: Get product_name
alt User has Starter/Pro/Max/Team plan
BillingStatus-->>hasAccessToModel: "starter" or higher plan
hasAccessToModel-->>ModelSelector: true (access granted)
ModelSelector->>ModelSelector: Auto-switch to Qwen3-VL 30B
ModelSelector-->>User: Model set to Qwen3-VL 30B
else User on free plan
BillingStatus-->>hasAccessToModel: free plan
hasAccessToModel-->>ModelSelector: false (no access)
ModelSelector->>ModelSelector: Show upgrade dialog
ModelSelector-->>User: Prompt to upgrade
end
Note over ModelSelector: Gemma 3 27B still available<br/>in Advanced menu
|
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 file reviewed, no comments
Changes
This upgrades the default vision model for paid users while keeping Gemma accessible for those who prefer it.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.