top of page
IMG_1215.png
bottom of page
import { getChatbotResponse } from 'backend/openai.jsw'; $w.onReady(function () { $w('#chatbot').onMessageReceived((message) => { const userInput = message.text; getChatbotResponse(userInput) .then(response => { $w('#chatbot').sendMessage(response); }) .catch(error => { $w('#chatbot').sendMessage('Sorry, I encountered an error.'); console.error('Error:', error); }); }); });