Switch default models
This commit is contained in:
parent
a68eb2a011
commit
dd4c91e8af
1 changed files with 6 additions and 6 deletions
12
lib/model.ts
12
lib/model.ts
|
|
@ -1,17 +1,17 @@
|
||||||
// Define your models here.
|
// Define your models here.
|
||||||
export const models = [
|
export const models = [
|
||||||
{
|
|
||||||
label: 'GPT 4o',
|
|
||||||
name: 'gpt-4o',
|
|
||||||
description: 'For complex, multi-step tasks',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: 'GPT 4o mini',
|
label: 'GPT 4o mini',
|
||||||
name: 'gpt-4o-mini',
|
name: 'gpt-4o-mini',
|
||||||
description: 'Small model for fast, lightweight tasks',
|
description: 'Small model for fast, lightweight tasks',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'GPT 4o',
|
||||||
|
name: 'gpt-4o',
|
||||||
|
description: 'For complex, multi-step tasks',
|
||||||
|
},
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
export const DEFAULT_MODEL_NAME: Model['name'] = 'gpt-4o';
|
export const DEFAULT_MODEL_NAME: Model['name'] = 'gpt-4o-mini';
|
||||||
|
|
||||||
export type Model = (typeof models)[number];
|
export type Model = (typeof models)[number];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue