UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

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 {};