UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

13 lines (12 loc) 327 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; }[]; }; }