result0613 = (await fetch("https://api.openai.com/v1/chat/completions", {
method: "POST",
headers: {
'Authorization':`Bearer ${key}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
model: "gpt-3.5-turbo-0613",
temperature: 0.7,
messages,
functions,
})
})).json()