aichatbot01 / static /script.js
Subbu1304's picture
Update static/script.js
11de855 verified
raw
history blame contribute delete
285 Bytes
function sendMessage() {
const input = document.getElementById('user-input').value;
if (input) {
// Send message to Flask server (This would be integrated with Gradio's response mechanism)
// Placeholder for now
alert('Message sent: ' + input);
}
}