Skip to content

Commit

Permalink
chore: added gpt-4o to model selector
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarod Kurland committed May 15, 2024
1 parent bd79f27 commit 6177079
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/routes/ChatRoute.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,8 @@ export function ChatRoute() {
})}
data={[
{ label: 'GPT-3.5', value: 'gpt-3.5-turbo' },
{ label: 'GPT-4', value: 'gpt-4' }
{ label: 'GPT-4', value: 'gpt-4' },
{ label: 'GPT-4o', value: 'gpt-4o' }
]}
onChange={async (value: 'gpt-3.5-turbo' | 'gpt-4') => {
const model = value;
Expand Down

0 comments on commit 6177079

Please sign in to comment.