Skip to content
Merged
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
6 changes: 3 additions & 3 deletions frontend/src/components/ModelSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ export const MODEL_CONFIG: Record<string, ModelCfg> = {
"qwen3-vl-30b": {
displayName: "Qwen3-VL 30B",
shortName: "Qwen3-VL",
badges: ["Pro", "New"],
requiresPro: true,
badges: ["New"],
requiresStarter: true,
supportsVision: true,
tokenLimit: 256000
}
Expand All @@ -116,7 +116,7 @@ export const CATEGORY_MODELS = {
reasoning_on: "deepseek-r1-0528", // R1 with thinking
reasoning_off: "deepseek-v31-terminus", // V3.1 without thinking
math: "qwen3-coder-480b",
image: "gemma-3-27b" // Gemma for image analysis
image: "qwen3-vl-30b" // Qwen3-VL for image analysis
};

const CATEGORY_INFO = {
Expand Down
Loading