@@ -52,6 +52,7 @@ def update(
5252 self ,
5353 id : str ,
5454 * ,
55+ container_tag : str | NotGiven = NOT_GIVEN ,
5556 container_tags : List [str ] | NotGiven = NOT_GIVEN ,
5657 content : str | NotGiven = NOT_GIVEN ,
5758 custom_id : str | NotGiven = NOT_GIVEN ,
@@ -67,9 +68,13 @@ def update(
6768 Update a memory with any content type (text, url, file, etc.) and metadata
6869
6970 Args:
70- container_tags : Optional tags this memory should be containerized by. This can be an ID for your
71+ container_tag : Optional tag this memory should be containerized by. This can be an ID for your
7172 user, a project ID, or any other identifier you wish to use to group memories.
7273
74+ container_tags: (DEPRECATED: Use containerTag instead) Optional tags this memory should be
75+ containerized by. This can be an ID for your user, a project ID, or any other
76+ identifier you wish to use to group memories.
77+
7378 content: The content to extract and process into a memory. This can be a URL to a
7479 website, a PDF, an image, or a video.
7580
@@ -102,6 +107,7 @@ def update(
102107 f"/v3/memories/{ id } " ,
103108 body = maybe_transform (
104109 {
110+ "container_tag" : container_tag ,
105111 "container_tags" : container_tags ,
106112 "content" : content ,
107113 "custom_id" : custom_id ,
@@ -212,6 +218,7 @@ def delete(
212218 def add (
213219 self ,
214220 * ,
221+ container_tag : str | NotGiven = NOT_GIVEN ,
215222 container_tags : List [str ] | NotGiven = NOT_GIVEN ,
216223 content : str | NotGiven = NOT_GIVEN ,
217224 custom_id : str | NotGiven = NOT_GIVEN ,
@@ -227,9 +234,13 @@ def add(
227234 Add a memory with any content type (text, url, file, etc.) and metadata
228235
229236 Args:
230- container_tags : Optional tags this memory should be containerized by. This can be an ID for your
237+ container_tag : Optional tag this memory should be containerized by. This can be an ID for your
231238 user, a project ID, or any other identifier you wish to use to group memories.
232239
240+ container_tags: (DEPRECATED: Use containerTag instead) Optional tags this memory should be
241+ containerized by. This can be an ID for your user, a project ID, or any other
242+ identifier you wish to use to group memories.
243+
233244 content: The content to extract and process into a memory. This can be a URL to a
234245 website, a PDF, an image, or a video.
235246
@@ -260,6 +271,7 @@ def add(
260271 "/v3/memories" ,
261272 body = maybe_transform (
262273 {
274+ "container_tag" : container_tag ,
263275 "container_tags" : container_tags ,
264276 "content" : content ,
265277 "custom_id" : custom_id ,
@@ -376,6 +388,7 @@ async def update(
376388 self ,
377389 id : str ,
378390 * ,
391+ container_tag : str | NotGiven = NOT_GIVEN ,
379392 container_tags : List [str ] | NotGiven = NOT_GIVEN ,
380393 content : str | NotGiven = NOT_GIVEN ,
381394 custom_id : str | NotGiven = NOT_GIVEN ,
@@ -391,9 +404,13 @@ async def update(
391404 Update a memory with any content type (text, url, file, etc.) and metadata
392405
393406 Args:
394- container_tags : Optional tags this memory should be containerized by. This can be an ID for your
407+ container_tag : Optional tag this memory should be containerized by. This can be an ID for your
395408 user, a project ID, or any other identifier you wish to use to group memories.
396409
410+ container_tags: (DEPRECATED: Use containerTag instead) Optional tags this memory should be
411+ containerized by. This can be an ID for your user, a project ID, or any other
412+ identifier you wish to use to group memories.
413+
397414 content: The content to extract and process into a memory. This can be a URL to a
398415 website, a PDF, an image, or a video.
399416
@@ -426,6 +443,7 @@ async def update(
426443 f"/v3/memories/{ id } " ,
427444 body = await async_maybe_transform (
428445 {
446+ "container_tag" : container_tag ,
429447 "container_tags" : container_tags ,
430448 "content" : content ,
431449 "custom_id" : custom_id ,
@@ -536,6 +554,7 @@ async def delete(
536554 async def add (
537555 self ,
538556 * ,
557+ container_tag : str | NotGiven = NOT_GIVEN ,
539558 container_tags : List [str ] | NotGiven = NOT_GIVEN ,
540559 content : str | NotGiven = NOT_GIVEN ,
541560 custom_id : str | NotGiven = NOT_GIVEN ,
@@ -551,9 +570,13 @@ async def add(
551570 Add a memory with any content type (text, url, file, etc.) and metadata
552571
553572 Args:
554- container_tags : Optional tags this memory should be containerized by. This can be an ID for your
573+ container_tag : Optional tag this memory should be containerized by. This can be an ID for your
555574 user, a project ID, or any other identifier you wish to use to group memories.
556575
576+ container_tags: (DEPRECATED: Use containerTag instead) Optional tags this memory should be
577+ containerized by. This can be an ID for your user, a project ID, or any other
578+ identifier you wish to use to group memories.
579+
557580 content: The content to extract and process into a memory. This can be a URL to a
558581 website, a PDF, an image, or a video.
559582
@@ -584,6 +607,7 @@ async def add(
584607 "/v3/memories" ,
585608 body = await async_maybe_transform (
586609 {
610+ "container_tag" : container_tag ,
587611 "container_tags" : container_tags ,
588612 "content" : content ,
589613 "custom_id" : custom_id ,
0 commit comments