hotelvoicechat / template /chatbot.html
prasanth345's picture
Rename templates/chatbot.html to template/chatbot.html
2011147 verified
raw
history blame contribute delete
422 Bytes
<!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>