From 5803b3fb69d9ab594cedc8641b57c638c5c7309e Mon Sep 17 00:00:00 2001 From: Lorenze Jay Date: Mon, 21 Oct 2024 16:04:42 -0700 Subject: [PATCH] fixed run types --- src/crewai/cli/reset_memories_command.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()