skip to Main Content

Html – Cant solve type error. Probably a basic question but getting no where with what seems to be a very simple piece of code

code: const generateResponse = async (incomingChatLi) => { const API_URL = "https://api.openai.com/v1/chat/completions"; const pElement = document.createElement("p"); // fetch response from openai api & define properties requestOptions = { method: 'POST', headers: { "Content-Type": "application/json", "Authorization": `Bearer ${API_KEY}` }, body: JSON.stringify({…

VIEW QUESTION
Back To Top
Search