Spaces:
Sleeping
Sleeping
File size: 1,720 Bytes
a3a8858 11de855 a3a8858 11de855 a3a8858 ce3593c a3a8858 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
// 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 += `
<div class="user-message">
<p>${input}</p>
</div>
`;
// 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 += `
<div class="bot-message">
<p>${data.response}</p>
</div>
`;
// Scroll to the bottom again after the bot's response
chatbox.scrollTop = chatbox.scrollHeight;
})
.catch(error => {
console.error('Error:', error);
chatbox.innerHTML += `
<div class="bot-message">
<p>Sorry, something went wrong.</p>
</div>
`;
});
}
// Add an event listener for the Enter key to send messages
document.getElementById("user-input").addEventListener("keypress", function(e) {
if (e.key === "Enter") {
sendMessage();
}
});
|