From a39fd69f76965c927f19496f8d6ae0d230a1f2a3 Mon Sep 17 00:00:00 2001 From: Eduard van Valkenburg Date: Fri, 13 Feb 2026 14:56:19 +0100 Subject: [PATCH] Add memory run snippet tag for docs extraction (#3921) --- python/samples/01-get-started/04_memory.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/samples/01-get-started/04_memory.py b/python/samples/01-get-started/04_memory.py index d35ef21581..03ef75257c 100644 --- a/python/samples/01-get-started/04_memory.py +++ b/python/samples/01-get-started/04_memory.py @@ -78,6 +78,7 @@ async def main() -> None: ) # + # session = agent.create_session() # The provider doesn't know the user yet — it will ask for a name @@ -93,6 +94,7 @@ async def main() -> None: print(f"Agent: {result}\n") print(f"[Memory] Stored user name: {memory.user_name}") + # if __name__ == "__main__":