From 3ea5229fd61886f53e3f32d9abdcda12dd5342d9 Mon Sep 17 00:00:00 2001 From: Nikhil Nawgiri Date: Sun, 25 Aug 2024 04:20:11 +0200 Subject: [PATCH] Remove console.log --- src/openai.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/openai.ts b/src/openai.ts index 1f26d27..6a0b13a 100644 --- a/src/openai.ts +++ b/src/openai.ts @@ -42,7 +42,6 @@ export const callOpenAiAPI = async ({ prompt, bearer, aiPersonality = "" }: { pr }, body: JSON.stringify(data), }; - console.log("init:", init); const response = await fetch(API_URL, init); const body = await response.json().then(data => data.choices[0].message.content);