From 82216938909c23edcf63c3e76c013e910cc30f3a Mon Sep 17 00:00:00 2001 From: cpacker Date: Mon, 26 Aug 2024 16:36:49 -0700 Subject: [PATCH] fix: patch another str --- tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_client.py b/tests/test_client.py index f703087e..20fc5d04 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -104,7 +104,7 @@ def test_memory(client, agent): # _reset_config() memory_response = client.get_in_context_memory(agent_id=agent.id) - print("MEMORY", memory_response) + print("MEMORY", memory_response.string()) updated_memory = {"human": "Updated human memory", "persona": "Updated persona memory"} client.update_in_context_memory(agent_id=agent.id, section="human", value=updated_memory["human"])