Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions frontend/src/components/ModelSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,14 @@ export const MODEL_CONFIG: Record<string, ModelCfg> = {
badges: ["Pro"],
requiresPro: true,
tokenLimit: 128000
},
"qwen3-vl-30b": {
displayName: "Qwen3-VL 30B",
shortName: "Qwen3-VL",
badges: ["Pro", "New"],
requiresPro: true,
supportsVision: true,
tokenLimit: 256000
}
};

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/UpgradePromptDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function UpgradePromptDialog({
benefits: [
"Images stay private with end-to-end encryption",
"Upload JPEG, PNG, and WebP formats securely",
"Use advanced vision models like Gemma 3",
"Use advanced vision models like Gemma 3 and Qwen3-VL",
"Analyze diagrams, screenshots, and photos privately",
"Extract text from images without exposing data"
]
Expand Down
6 changes: 5 additions & 1 deletion frontend/src/config/pricingConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ export const PRICING_PLANS: PricingPlan[] = [
included: true,
icon: <Check className="w-4 h-4 text-green-500" />
},
{ text: "Gemma 3 27B", included: true, icon: <Check className="w-4 h-4 text-green-500" /> },
{
text: "Gemma 3 27B",
included: true,
icon: <Check className="w-4 h-4 text-green-500" />
},
{ text: "Image Upload", included: true, icon: <Check className="w-4 h-4 text-green-500" /> },
{
text: "Document Upload (PDF, TXT, MD)",
Expand Down
Loading