-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 953 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (26 loc) · 953 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>LLM Integrated Medical Assistant Chatbot</title>
<script src="https://storage.googleapis.com/mrbot-cdn/webchat-0.14.0.js"></script>
</head>
<body>
<div id="webchat"></div>
<script>
WebChat.default.init({
selector: "#webchat",
initPayload: "Hello! How can I help you?",
customData: {"userId": "123"},
socketUrl: "http://localhost:5005",
socketPath: "/socket.io/",
title: "Health/Medical Assistant",
subtitle: "Hey, I'm a Medical Assistant Chatbot with LLM integration for advanced queries. You can ask me about Symptom assessment and triage, Medical information, mental health support, and Chronic Disease Management, etc.",
inputTextFieldHint: "Type your message...",
profileAvatar: "https://example.com/medical-bot.png",
params: {
"storage": "session" // Persist chat across page refreshes
}
});
</script>
</body>
</html>