File size: 422 Bytes
3c80d6f
e8139a9
3c80d6f
e8139a9
 
3c80d6f
 
e8139a9
 
 
0a2034a
e8139a9
 
 
0a2034a
3c80d6f
 
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>