async function sendMessage(message) {
const res = await fetch(‘https://bold-mountain-41fe.narnianazrin.workers.dev/’, {
method: ‘POST’,
headers: { ‘Content-Type’: ‘application/json’ },
body: JSON.stringify({ input: message }),
})
if (!res.ok) {
throw new Error(`HTTP error! status: ${res.status}`)
}
const data = await res.json()
return data.reply
}