crewai-ts
Version:
TypeScript port of crewAI for agent-based workflows
13 lines • 376 B
TypeScript
/**
* Main CLI entry point with optimized command registration and loading.
*/
import { CLI } from './CLI.js';
/**
* Initialize the CLI with all available commands
*/
export declare function initializeCLI(): Promise<CLI>;
/**
* Run the CLI with the provided arguments
*/
export declare function runCLI(args?: string[]): Promise<void>;
//# sourceMappingURL=index.d.ts.map