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
2 changes: 1 addition & 1 deletion frontend/src/components/ModelSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export function ModelSelector({ hasImages = false }: { hasImages?: boolean }) {
if (model === PRIMARY_MODELS.quick) return "Quick";
if (model === PRIMARY_MODELS.powerful) return "Powerful";
const config = MODEL_CONFIG[model];
return config?.displayName || model;
return config?.shortName || config?.displayName || model;
};

// Check if user has access to a model based on their plan
Expand Down
Loading