From c9e1497460370a9e16731e34f5d79a4b5683b4ee Mon Sep 17 00:00:00 2001 From: Pavan Kumar <66913595+ascender1729@users.noreply.github.com> Date: Sun, 8 Jun 2025 10:35:20 +0000 Subject: [PATCH] Add Pulsar conversation example for persistent agent memory --- examples/communication_examples/pulsar_conversation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/communication_examples/pulsar_conversation.py b/examples/communication_examples/pulsar_conversation.py index c74bc4d2..b0ac00ee 100644 --- a/examples/communication_examples/pulsar_conversation.py +++ b/examples/communication_examples/pulsar_conversation.py @@ -15,7 +15,7 @@ agent = Agent( model_name="gpt-4o-mini", long_term_memory=conversation_store, max_loops=1, - autosave=True, + autosave=False, ) response = agent.run("What time is check-out?")