Spaces:
Runtime error
Runtime error
File size: 422 Bytes
c8f26c2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<!DOCTYPE html>
<html>
<head>
<title>Chatbot - Hotel Booking</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>Hotel Booking Chatbot</h1>
<div id="chatbot"></div>
<script src="https://cdn.jsdelivr.net/npm/gradio"></script>
<script>
gr.Interface({
src: "/chatbot"
}).render("#chatbot");
</script>
</body>
</html>
|