UNPKG

dtamind-components

Version:

Apps integration for Dtamind. Contain Nodes and Credentials.

16 lines (15 loc) 402 B
export interface ILLMMessage { role: 'system' | 'assistant' | 'user' | 'tool' | 'developer'; content: string; } export interface IStructuredOutput { key: string; type: 'string' | 'stringArray' | 'number' | 'boolean' | 'enum' | 'jsonArray'; enumValues?: string; description?: string; jsonSchema?: string; } export interface IFlowState { key: string; value: string; }