import { createChat } from 'https://cdn.jsdelivr.net/npm/@n8n/chat/dist/chat.bundle.es.js'; createChat({ webhookUrl: 'https://n8n.zenbiz.ai/webhook/8d673bec-38e5-440f-ac6e-ea57c8244758/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 Ashley. 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..', }, }, });