-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (21 loc) · 901 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<head>
<link rel="stylesheet" href="https://npm-scalableminds.s3.eu-central-1.amazonaws.com/@scalableminds/chatroom@master/dist/Chatroom.css" />
<meta charset="UTF-8">
</head>
<body>
<div style="width:100%; display: flex; justify-content: center;">
<div class="chat-container" style="width: 50%;"></div>
</div>
<script src="https://npm-scalableminds.s3.eu-central-1.amazonaws.com/@scalableminds/chatroom@master/dist/Chatroom.js"/></script>
<script type="text/javascript">
var chatroom = new window.Chatroom({
host: "http://localhost:5005",
title: "Artwork Booking Chatbot - සිංහල",
container: document.querySelector(".chat-container"),
welcomeMessage: "ආයුබෝවන්!",
// speechRecognition: "en-US",
// voiceLang: "en-US"
});
chatroom.openChat();
</script>
</body>