diff --git a/client/src/components/Chat/index.tsx b/client/src/components/Chat/index.tsx index e9a4387171..69a659188e 100644 --- a/client/src/components/Chat/index.tsx +++ b/client/src/components/Chat/index.tsx @@ -129,9 +129,7 @@ const Chat = () => { }` : '' }&answer_model=${ - preferredAnswerSpeed === 'normal' - ? 'gpt-4-turbo-24k' - : 'gpt-3.5-turbo-finetuned' + preferredAnswerSpeed === 'normal' ? 'gpt-4' : 'gpt-3.5-turbo-finetuned' }`; console.log(url); const eventSource = new EventSource(url);