44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
<script src="~/js/Navbar.js"></script>
|
|
<script>
|
|
window.assetBaseUrl = '@Url.Content("~/assets/")';
|
|
</script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
|
|
@* <script src="~/lib/lucide/lucide.min.js"></script> *@
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
lucide.createIcons();
|
|
});
|
|
</script>
|
|
|
|
<script type="module">
|
|
@* import { createChat } from 'https://cdn.jsdelivr.net/npm/@@n8n/chat/dist/chat.bundle.es.js'; *@
|
|
|
|
createChat({
|
|
webhookUrl: 'https://n8n.nurarif.in/webhook/f2129606-7716-415b-a83b-b9c0e84b752f/chat',
|
|
webhookConfig: {
|
|
method: 'POST',
|
|
headers: {}
|
|
},
|
|
target: '#n8n-chat',
|
|
mode: 'window',
|
|
chatInputKey: 'chatInput',
|
|
chatSessionKey: 'sessionId',
|
|
metadata: {},
|
|
showWelcomeScreen: false,
|
|
defaultLanguage: 'en',
|
|
initialMessages: [
|
|
'Hi there! 👋',
|
|
'My name is Nathan. How can I assist you today?'
|
|
],
|
|
i18n: {
|
|
en: {
|
|
title: 'Hi there! 👋',
|
|
subtitle: "Start a chat. We're here to help you 24/7.",
|
|
footer: '',
|
|
getStarted: 'New Conversation',
|
|
inputPlaceholder: 'Type your question..',
|
|
},
|
|
},
|
|
});
|
|
</script> |