File size: 285 Bytes
11de855
 
 
 
 
 
 
ce3593c
1
2
3
4
5
6
7
8
9
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);
    }
}