Skip to content

Commit 6177079

Browse files
author
Jarod Kurland
committed
chore: added gpt-4o to model selector
1 parent bd79f27 commit 6177079

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/routes/ChatRoute.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,8 @@ export function ChatRoute() {
275275
})}
276276
data={[
277277
{ label: 'GPT-3.5', value: 'gpt-3.5-turbo' },
278-
{ label: 'GPT-4', value: 'gpt-4' }
278+
{ label: 'GPT-4', value: 'gpt-4' },
279+
{ label: 'GPT-4o', value: 'gpt-4o' }
279280
]}
280281
onChange={async (value: 'gpt-3.5-turbo' | 'gpt-4') => {
281282
const model = value;

0 commit comments

Comments
 (0)