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:
commit
32d68b99e3
1 changed files with 5 additions and 5 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue