@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
19 lines (16 loc) • 405 B
text/typescript
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
}
}