Move ai folder to lib/ (#542)

This commit is contained in:
Jared Palmer 2024-11-15 12:33:12 -05:00 committed by GitHub
parent 914238be80
commit b8643353c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 8 additions and 8 deletions

View file

@ -1,25 +0,0 @@
// Define your models here.
export interface Model {
id: string;
label: string;
apiIdentifier: string;
description: string;
}
export const models: Array<Model> = [
{
id: 'gpt-4o-mini',
label: 'GPT 4o mini',
apiIdentifier: 'gpt-4o-mini',
description: 'Small model for fast, lightweight tasks',
},
{
id: 'gpt-4o',
label: 'GPT 4o',
apiIdentifier: 'gpt-4o',
description: 'For complex, multi-step tasks',
},
] as const;
export const DEFAULT_MODEL_NAME: string = 'gpt-4o-mini';