UNPKG

@forgeflowai/chat

Version:

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

17 lines (16 loc) 378 B
export interface LoadPreviousSessionResponseItem { id: string[]; kwargs: { content: string; additional_kwargs: Record<string, unknown>; }; lc: number; type: string; } export interface LoadPreviousSessionResponse { data: LoadPreviousSessionResponseItem[]; } export interface SendMessageResponse { output?: string; text?: string; }