async function sendMessageToN8N(message) { const webhookURL = "https://your-n8n-instance/webhook/chat"; // Replace with your webhook try { await fetch(webhookURL, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ text: message }), }); } catch (error) { console.error("Error sending message:", error); } }