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