rasaboot / web /index.html
Aamir Butt
Added css, js file and updated index.html
85c3d07
raw
history blame contribute delete
628 Bytes
<head>
<link rel="stylesheet" href="Chatroom.css" />
</head>
<body>
<div class="chat-container"></div>
<script src="Chatroom.js"></script>
</script>
<script type="text/javascript">
var chatroom = new window.Chatroom({
host: "http://localhost:5005",
title: "Kendra, powered by Rasa and ZIR AI",
container: document.querySelector(".chat-container"),
welcomeMessage: "Hello, my name is Kendra, and I'll be happy to assist with your questions about Burj Al Arab Jumeirah. How may I help you"
});
chatroom.openChat();
</script>
</body>