-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1.04 KB
/
index.html
File metadata and controls
30 lines (28 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chatbot Demo</title>
<link rel="stylesheet" href="dist/chatbot-widget.css" />
</head>
<body class="bg-accent text-accent-foreground">
<h1 class="text-2xl font-bold p-6">
Welcome to Neutrino + ML Research Group
</h1>
<p class="px-6">This page includes a chatbot powered by OuRAGboros.</p>
<!-- [Optional] Configure Chatbot Widget -->
<script>
window.ChatbotConfig = {
apiUrl: "http://lambda-sp3.slac.stanford.edu:8000/ask",
resetWarning:
"Start a new conversation? This will erase current messages.", // set to falsy value to disable reset warning
// welcomeMessage: "👋 Hello! Ask me anything about our research!",
// downloadFilename: "chat-history.md",
// chatbotName: "🤖 Chatbot",
};
</script>
<!-- Load Chatbot Widget -->
<script src="dist/chatbot-widget.min.js"></script>
</body>
</html>