UNPKG

@forgeflowai/chat

Version:

This is an embeddable Chat widget for n8n. It allows the execution of AI-Powered Workflows through a Chat window.

32 lines (31 loc) 892 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultOptions = exports.defaultMountingTarget = void 0; const defaultOptions = exports.defaultOptions = { webhookUrl: "http://localhost:5678", webhookConfig: { method: "POST", headers: {} }, target: "#n8n-chat", mode: "window", loadPreviousSession: true, chatInputKey: "chatInput", chatSessionKey: "sessionId", defaultLanguage: "en", showWelcomeScreen: false, initialMessages: ["Hi there! \u{1F44B}", "My name is Nathan. How can I assist you today?"], i18n: { en: { title: "Hi there! \u{1F44B}", subtitle: "Start a chat. We're here to help you 24/7.", footer: "", getStarted: "New Conversation", inputPlaceholder: "Type your question.." } }, theme: {} }; const defaultMountingTarget = exports.defaultMountingTarget = "#n8n-chat";