dtamind-components
Version:
DTAmindai Components
16 lines (15 loc) • 402 B
TypeScript
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;
}