Remove console.log

This commit is contained in:
Nikhil Nawgiri 2024-08-25 04:20:11 +02:00
parent 3e6b798508
commit 3ea5229fd6

View file

@ -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);