UNPKG

jcrewai

Version:

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

9 lines (8 loc) 281 B
import { Agent } from './Agent'; import { BaseTask } from './tasks/BaseTask'; import { TaskOptions } from './tasks/TaskOptions'; export declare class Task extends BaseTask { constructor(options: TaskOptions); prompt(): string; execute(agent: Agent): Promise<string>; }