diff --git a/src/crewai/cli/reset_memories_command.py b/src/crewai/cli/reset_memories_command.py index 0c83d54c0..c4808594f 100644 --- a/src/crewai/cli/reset_memories_command.py +++ b/src/crewai/cli/reset_memories_command.py @@ -32,10 +32,10 @@ def reset_memories_command(long, short, entity, kickoff_outputs, all) -> None: click.echo("Long term memory has been reset.") if short: - ShortTermMemory(allow_reset=True).reset() + ShortTermMemory().reset() click.echo("Short term memory has been reset.") if entity: - EntityMemory(allow_reset=True).reset() + EntityMemory().reset() click.echo("Entity memory has been reset.") if kickoff_outputs: TaskOutputStorageHandler().reset()