From 2661a6f4255b6759ea95cec33293a8c5907648bf Mon Sep 17 00:00:00 2001 From: Joseph J Helfenbein Date: Sun, 26 Jan 2025 08:50:31 -0500 Subject: [PATCH] remove stream parameter --- src/app/api/chat/route.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/api/chat/route.js b/src/app/api/chat/route.js index 73550a1..5d01371 100644 --- a/src/app/api/chat/route.js +++ b/src/app/api/chat/route.js @@ -30,9 +30,9 @@ export async function POST(req) { frequency_penalty: 0, stop: [], response_format: null, - stream: true, + stream: false, stream_options: { - include_usage: true, + include_usage: false, }, };