-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathchatbot.html
65 lines (58 loc) · 1.97 KB
/
chatbot.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <meta
http-equiv="Content-Security-Policy"
content="default-src 'self';style-src 'self' 'nonce-J1U94PzXrPKIy71kw3TpNw=='; script-src 'self' 'nonce-J1U94PzXrPKIy71kw3TpNw==' https://securetoken.googleapis.com https://firestore.googleapis.com https://www.googleapis.com; connect-src 'self' https://www.googleapis.com https://us-central1-emc-zdtrk-development-d.cloudfunctions.net https://firestore.googleapis.com; img-src 'self'; object-src 'none'"
/> -->
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Device Tracker" />
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<title>Device Tracker</title>
<!-- <style>
body {
margin: 0;
}
</style> -->
<link rel="stylesheet" href="https://www.gstatic.com/dialogflow-console/fast/df-messenger/prod/v1/themes/df-messenger-default.css">
<script src="https://www.gstatic.com/dialogflow-console/fast/df-messenger/prod/v1/df-messenger.js"></script>
</head>
<body>
<style>
df-messenger,.df-messenger {
/*
* Customize as required. df-messenger will fill the
* space that is provided.
*/
width: 100% !important;
}
:root {
--df-messenger-titlebar-background: transparent;
}
</style>
<df-messenger
project-id="emc-zdtrk-research02-d"
agent-id="7ecf5891-fd70-4a70-b44b-032b625c50cd"
language-code="en"
allow-feedback="all">
<df-messenger-chat
chat-title="Techdocs Gen AI Chatbot">
</df-messenger-chat>
</df-messenger>
<style>
df-messenger {
z-index: 999;
position: fixed;
bottom: 0;
right: 0;
top: 0;
width: 350px;
}
</style>
</body>
</html>