make agents not have a memory by default

This commit is contained in:
João Moura
2024-02-24 03:33:05 -03:00
parent 8e4b156f11
commit dcba1488a6

View File

@@ -66,7 +66,7 @@ class Agent(BaseModel):
description="Maximum number of requests per minute for the agent execution to be respected.", description="Maximum number of requests per minute for the agent execution to be respected.",
) )
memory: bool = Field( memory: bool = Field(
default=True, description="Whether the agent should have memory or not" default=False, description="Whether the agent should have memory or not"
) )
verbose: bool = Field( verbose: bool = Field(
default=False, description="Verbose mode for the Agent Execution" default=False, description="Verbose mode for the Agent Execution"