UNPKG

crewai-ts

Version:

TypeScript port of crewAI for agent-based workflows

26 lines 898 B
/** * CLI command for resetting various types of memory storages. * Optimized for targeted memory management and efficient cleanup. * Memory-optimized with strong type safety. */ import { Command } from '../Command.js'; export declare class ResetMemoriesCommand extends Command { readonly name = "reset-memories"; readonly description = "Reset various types of crew memories"; readonly syntax = "[options]"; readonly examples: string[]; execute(args: string[]): Promise<void>; /** * Parse command line arguments for the reset-memories command * Optimized for handling various argument formats */ protected parseArgs(args: string[]): { long: boolean; short: boolean; entities: boolean; knowledge: boolean; kickoffOutputs: boolean; all: boolean; }; } //# sourceMappingURL=ResetMemoriesCommand.d.ts.map