@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
16 lines (15 loc) • 520 B
TypeScript
/// <reference types="react" />
import { AgenticOutputMessage } from '../types';
import { ContentFieldsBase } from './content-fields-base';
import { HtAiAgentNode } from './hubtype-fields/ai-agent';
export declare class FlowAiAgent extends ContentFieldsBase {
code: string;
name: string;
instructions: string;
activeTools?: {
name: string;
}[];
responses: AgenticOutputMessage[];
static fromHubtypeCMS(component: HtAiAgentNode): FlowAiAgent;
toBotonic(id: string): JSX.Element;
}