// This will handle sending the message and displaying the response in the Gradio chatbot function sendMessage() { const input = document.getElementById("user-input").value; const chatbox = document.getElementById("chatbot"); if (input.trim() === "") { return; // Ignore if no input is provided } // Add the user's message to the chatbox chatbox.innerHTML += `

${input}

`; // Clear the input box document.getElementById("user-input").value = ""; // Scroll to the bottom of the chat for new message chatbox.scrollTop = chatbox.scrollHeight; // Send the input to Gradio and get the bot response fetch('/process_message', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ message: input }) }) .then(response => response.json()) .then(data => { // Add the bot's response to the chatbox chatbox.innerHTML += `

${data.response}

`; // Scroll to the bottom again after the bot's response chatbox.scrollTop = chatbox.scrollHeight; }) .catch(error => { console.error('Error:', error); chatbox.innerHTML += `

Sorry, something went wrong.

`; }); } // Add an event listener for the Enter key to send messages document.getElementById("user-input").addEventListener("keypress", function(e) { if (e.key === "Enter") { sendMessage(); } });