UNPKG

jcrewai

Version:

Multi-agent automation framework written in TypeScript. Patterned after CrewAI.

11 lines (10 loc) 260 B
import { OutputFormat } from './OutputFormat'; export declare class TaskOutput { description?: string; name?: string; expectedOutput?: string; summary?: string; rawOutput?: string; agentName?: string; outputFormat?: OutputFormat; }