UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

12 lines (10 loc) 282 B
import { HtBaseNode } from './common' import { HtNodeWithContentType } from './node-types' export interface HtAiAgentNode extends HtBaseNode { type: HtNodeWithContentType.AI_AGENT content: { name: string instructions: string active_tools?: { name: string }[] } }