UNPKG

@forgeflowai/chat

Version:

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

11 lines (10 loc) 256 B
import { createChat } from "@forgeflowai/chat/index"; export function createTestChat(options = {}) { const app = createChat(options); const container = app._container; const unmount = () => app.unmount(); return { unmount, container }; }