UNPKG

@botonic/plugin-flow-builder

Version:

Botonic plugin for **Hubtype Flow Builder**: run and bridge flow-driven logic from bots on the **current** line.

18 lines (17 loc) 455 B
import { HtBaseNode } from './common'; import { HtNodeWithContentType } from './node-types'; interface SourceData { id: string; name: string; } export interface HtKnowledgeBaseNode extends HtBaseNode { type: HtNodeWithContentType.KNOWLEDGE_BASE; content: { feedback_enabled: boolean; sources_data: SourceData[]; instructions: string; has_memory: boolean; memory_length?: number; }; } export {};