Skip to content

Commit

Permalink
Switch default models
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Oct 28, 2024
1 parent a68eb2a commit dd4c91e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/model.ts
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];

0 comments on commit dd4c91e

Please sign in to comment.