Merge pull request #278 from unslothai/fix/reorder-model-type-cards-onboarding

Reorder model type cards in onboarding to show Text first
This commit is contained in:
Roland Tannous 2026-02-27 13:17:00 +04:00 committed by GitHub
commit 32d68b99e3

View file

@ -39,6 +39,11 @@ export const MODEL_TYPES: ReadonlyArray<{
label: string;
description: string;
}> = [
{
value: "text",
label: "Text",
description: "Language models",
},
{
value: "vision",
label: "Vision",
@ -54,11 +59,6 @@ export const MODEL_TYPES: ReadonlyArray<{
label: "Embeddings",
description: "Text embedding models",
},
{
value: "text",
label: "Text",
description: "Language models",
},
];
export const CONTEXT_LENGTHS = [512, 1024, 2048, 4096, 8192, 16384, 32768];