Skip to content

Commit 2675d88

Browse files
committed
Fix missing comma in get_or_create_working_memory call
Added missing comma after model_name parameter.
1 parent da51403 commit 2675d88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python-recipes/context-engineering/notebooks/section-3-memory/01_working_memory_with_extraction_strategies.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
"# Retrieve working memory\n",
240240
"_, working_memory = await memory_client.get_or_create_working_memory(\n",
241241
" session_id=session_id,\n",
242-
" model_name=\"gpt-4o\"\n",
242+
" model_name=\"gpt-4o\",\n",
243243
" user_id=student_id,\n",
244244
")\n",
245245
"\n",

0 commit comments

Comments
 (0)