forked from vercel/ai-chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a68eb2a
commit dd4c91e
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +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', | ||
}, | ||
{ | ||
label: 'GPT 4o', | ||
name: 'gpt-4o', | ||
description: 'For complex, multi-step tasks', | ||
}, | ||
] 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]; |