@forgeflowai/chat
Version:
This is an embeddable Chat widget for n8n. It allows the execution of AI-Powered Workflows through a Chat window.
4 lines (3 loc) • 344 B
TypeScript
import type { ChatOptions, LoadPreviousSessionResponse, SendMessageResponse } from '../types';
export declare function loadPreviousSession(sessionId: string, options: ChatOptions): Promise<LoadPreviousSessionResponse>;
export declare function sendMessage(message: string, sessionId: string, options: ChatOptions): Promise<SendMessageResponse>;