2024-10-30 16:01:24 +05:30
|
|
|
// 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',
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-11-07 02:40:29 +03:00
|
|
|
id: 'gpt-4o-blocks',
|
|
|
|
|
label: 'GPT 4o with Blocks',
|
2024-10-30 16:01:24 +05:30
|
|
|
apiIdentifier: 'gpt-4o',
|
|
|
|
|
description: 'Collaborate with writing',
|
|
|
|
|
},
|
|
|
|
|
] as const;
|
|
|
|
|
|
|
|
|
|
export const DEFAULT_MODEL_NAME: string = 'gpt-4o-mini';
|