-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.html
More file actions
24 lines (23 loc) · 786 Bytes
/
example.html
File metadata and controls
24 lines (23 loc) · 786 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>N8n Chat Example</title>
<link rel="stylesheet" href="./n8n-chat-standalone.css">
</head>
<body>
<div id="chat-container"></div>
<script type="module" src="./n8n-chat-standalone.js"></script>
<script type="module">
// Initialize the chat
window.N8nChat.createChat({
webhookUrl: "https://dailyai-youtube.app.n8n.cloud/webhook/f37da6a3-685a-4a4e-8583-f34bbd79c33d/chat",
target: "#chat-container",
mode: "fullscreen",
showWelcomeScreen: true,
initialMessages: ["Hello! How can I help you today?"]
});
</script>
</body>
</html>