From 9a407de5a20b7eeeda8ac37bed0244e71f559c14 Mon Sep 17 00:00:00 2001 From: Jared Palmer Date: Fri, 16 Jun 2023 16:47:18 -0400 Subject: [PATCH] Fix parameters for chat --- app/api/chat/route.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/api/chat/route.ts b/app/api/chat/route.ts index 338210d..6bb781d 100644 --- a/app/api/chat/route.ts +++ b/app/api/chat/route.ts @@ -28,10 +28,6 @@ export async function POST(req: Request) { model: 'gpt-3.5-turbo', messages, temperature: 0.7, - top_p: 1, - frequency_penalty: 1, - max_tokens: 500, - n: 1, stream: true })