mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 16:18:30 +00:00
fixed run types
This commit is contained in:
@@ -32,10 +32,10 @@ def reset_memories_command(long, short, entity, kickoff_outputs, all) -> None:
|
|||||||
click.echo("Long term memory has been reset.")
|
click.echo("Long term memory has been reset.")
|
||||||
|
|
||||||
if short:
|
if short:
|
||||||
ShortTermMemory(allow_reset=True).reset()
|
ShortTermMemory().reset()
|
||||||
click.echo("Short term memory has been reset.")
|
click.echo("Short term memory has been reset.")
|
||||||
if entity:
|
if entity:
|
||||||
EntityMemory(allow_reset=True).reset()
|
EntityMemory().reset()
|
||||||
click.echo("Entity memory has been reset.")
|
click.echo("Entity memory has been reset.")
|
||||||
if kickoff_outputs:
|
if kickoff_outputs:
|
||||||
TaskOutputStorageHandler().reset()
|
TaskOutputStorageHandler().reset()
|
||||||
|
|||||||
Reference in New Issue
Block a user