UNPKG

@forgeflowai/chat

Version:

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

10 lines (9 loc) 287 B
export function createFetchResponse(data) { return async () => ({ json: async () => await new Promise((resolve) => resolve(data)) }); } export const createGetLatestMessagesResponse = (data = []) => ({ data }); export const createSendMessageResponse = (output) => ({ output });