You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix remaining API issues in section-3-memory notebooks
- Fixed search_memories() -> search_long_term_memory() in 01_working_memory
- Fixed enumerate(extracted_memories) -> enumerate(extracted_memories.memories)
All section-3 notebooks should now use correct API.
Copy file name to clipboardExpand all lines: python-recipes/context-engineering/notebooks/section-3-memory/01_working_memory_with_extraction_strategies.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -332,7 +332,7 @@
332
332
"print(\"=\" * 50)\n",
333
333
"\n",
334
334
"if extracted_memories.memories:\n",
335
-
" for i, memory in enumerate(extracted_memories, 1):\n",
335
+
" for i, memory in enumerate(extracted_memories.memories, 1):\n",
0 commit comments