From 1eb6f82306f4d2d93a4b81155bdb00a497515794 Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Sat, 22 Jun 2024 14:10:17 -0700 Subject: [PATCH] fix: drop print from #1465 (#1472) --- memgpt/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memgpt/agent.py b/memgpt/agent.py index 80e58479..46923265 100644 --- a/memgpt/agent.py +++ b/memgpt/agent.py @@ -236,7 +236,7 @@ class Agent(object): if "human" not in self.agent_state.state: # TODO: remove raise ValueError(f"'human' not found in provided AgentState") self.memory = initialize_memory(ai_notes=self.agent_state.state["persona"], human_notes=self.agent_state.state["human"]) - print("INITIALIZED MEMORY", self.memory.persona, self.memory.human) + printd("INITIALIZED MEMORY", self.memory.persona, self.memory.human) # Interface must implement: # - internal_monologue