top of page
IMG_1215.png

Welcome to Muish! We're thrilled to embark on this underwater odyssey with you. Whether you have questions, ideas, or just want to share your excitement about the Muish universe, our team is ready to listen. Reach out to us, and let's make the Muish adventure even more remarkable together.

Direct contact: team@muish.com

Contact us

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); }); }); });