From 1be678720dd79ac157e8d41c0cd644e27ebd6c46 Mon Sep 17 00:00:00 2001 From: eavanvalkenburg Date: Fri, 13 Feb 2026 14:29:23 +0100 Subject: [PATCH] Add memory run snippet tag for docs extraction --- 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__":