UNPKG

crewai-ts

Version:

TypeScript port of crewAI for agent-based workflows

18 lines 625 B
import { Command } from '../Command.js'; export declare class TrainCrewCommand extends Command { readonly name = "train-crew"; readonly description = "Train the crew for improved performance"; readonly syntax = "[options]"; readonly examples: string[]; execute(args: string[]): Promise<void>; /** * Parse command line arguments for the train-crew command * Optimized for handling various argument formats */ protected parseArgs(args: string[]): { iterations: number; filename: string; verbose: boolean; }; } //# sourceMappingURL=TrainCrewCommand.d.ts.map