// 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; }
top of page
ict (1).png

Soy un párrafo. Haga clic aquí para editar y agregar su propio texto. ¡Es fácil! Simplemente haga clic en "Editar texto" o haga doble clic en mí y podrá agregar su propio contenido y cambiar las fuentes. Siéntete libre de arrastrarme y soltarme en cualquier lugar de tu página. Soy un gran lugar para que cuente su historia y deje que sus clientes sepan un poco más sobre usted. Este es un gran lugar para escribir un texto extenso sobre su empresa y sus servicios. Habla sobre tu equipo y los servicios que brindas. Cuénteles a sus visitantes cómo se le ocurrió la idea de comenzar su negocio y qué lo diferencia de sus competidores. Haga que su empresa se destaque y demuestre quién es usted.

bottom of page