From bd79f273e3d80aaaae0b901ead718f45729e4a20 Mon Sep 17 00:00:00 2001 From: Jarod Kurland Date: Tue, 14 May 2024 10:55:53 +0200 Subject: [PATCH 1/2] chore: added gpt-4-turbo and gpt-4o as selectable models --- src/static/config.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/static/config.json b/src/static/config.json index a1767b6..eed2847 100644 --- a/src/static/config.json +++ b/src/static/config.json @@ -53,6 +53,14 @@ { "value": "gpt-4-1106-preview", "label": "GPT-4-1106-Preview" + }, + { + "value": "gpt-4-turbo", + "label": "GPT-4 Turbo" + }, + { + "value": "gpt-4o", + "label": "GPT-4 omni" } ], "writingCharacters": [ From 617707984d7749a051ed7cb13e34dc8e23da238f Mon Sep 17 00:00:00 2001 From: Jarod Kurland Date: Wed, 15 May 2024 07:57:28 +0200 Subject: [PATCH 2/2] chore: added gpt-4o to model selector --- src/routes/ChatRoute.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/routes/ChatRoute.tsx b/src/routes/ChatRoute.tsx index 8d52d84..ba165b4 100644 --- a/src/routes/ChatRoute.tsx +++ b/src/routes/ChatRoute.tsx @@ -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;