top of page

Search


10 Reasons to get an ICOR certification
Demonstrate your commitment to the profession. When you are certified, you demonstrate commitment to the profession and the ability to...

ICOR Brasil
Apr 28, 20211 min read
bottom of page
// No backend (backend/gptApi.jsw) import {fetch} from 'wix-fetch'; export async function getGPTResponse(prompt) { const apiKey = "SUA_CHAVE_DE_API_OPENAI"; const response = await fetch("https://api.openai.com/v1/chat/completions", { method: "POST", headers: { "Content-Type": "application/json", "Authorization": `Bearer ${apiKey}` }, body: JSON.stringify({ model: "gpt-4", // ou gpt-3.5-turbo messages: [{ role: "user", content: prompt }], max_tokens: 100, }) }); const data = await response.json(); return data.choices[0].message.content; }