@@ -52,7 +52,6 @@ def update(
5252 self ,
5353 id : str ,
5454 * ,
55- container_tag : str | NotGiven = NOT_GIVEN ,
5655 container_tags : List [str ] | NotGiven = NOT_GIVEN ,
5756 content : str | NotGiven = NOT_GIVEN ,
5857 custom_id : str | NotGiven = NOT_GIVEN ,
@@ -68,13 +67,9 @@ def update(
6867 Update a memory with any content type (text, url, file, etc.) and metadata
6968
7069 Args:
71- container_tag : Optional tag this memory should be containerized by. This can be an ID for your
70+ container_tags : Optional tags this memory should be containerized by. This can be an ID for your
7271 user, a project ID, or any other identifier you wish to use to group memories.
7372
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-
7873 content: The content to extract and process into a memory. This can be a URL to a
7974 website, a PDF, an image, or a video.
8075
@@ -107,7 +102,6 @@ def update(
107102 f"/v3/memories/{ id } " ,
108103 body = maybe_transform (
109104 {
110- "container_tag" : container_tag ,
111105 "container_tags" : container_tags ,
112106 "content" : content ,
113107 "custom_id" : custom_id ,
@@ -218,7 +212,6 @@ def delete(
218212 def add (
219213 self ,
220214 * ,
221- container_tag : str | NotGiven = NOT_GIVEN ,
222215 container_tags : List [str ] | NotGiven = NOT_GIVEN ,
223216 content : str | NotGiven = NOT_GIVEN ,
224217 custom_id : str | NotGiven = NOT_GIVEN ,
@@ -234,13 +227,9 @@ def add(
234227 Add a memory with any content type (text, url, file, etc.) and metadata
235228
236229 Args:
237- container_tag : Optional tag this memory should be containerized by. This can be an ID for your
230+ container_tags : Optional tags this memory should be containerized by. This can be an ID for your
238231 user, a project ID, or any other identifier you wish to use to group memories.
239232
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-
244233 content: The content to extract and process into a memory. This can be a URL to a
245234 website, a PDF, an image, or a video.
246235
@@ -271,7 +260,6 @@ def add(
271260 "/v3/memories" ,
272261 body = maybe_transform (
273262 {
274- "container_tag" : container_tag ,
275263 "container_tags" : container_tags ,
276264 "content" : content ,
277265 "custom_id" : custom_id ,
@@ -388,7 +376,6 @@ async def update(
388376 self ,
389377 id : str ,
390378 * ,
391- container_tag : str | NotGiven = NOT_GIVEN ,
392379 container_tags : List [str ] | NotGiven = NOT_GIVEN ,
393380 content : str | NotGiven = NOT_GIVEN ,
394381 custom_id : str | NotGiven = NOT_GIVEN ,
@@ -404,13 +391,9 @@ async def update(
404391 Update a memory with any content type (text, url, file, etc.) and metadata
405392
406393 Args:
407- container_tag : Optional tag this memory should be containerized by. This can be an ID for your
394+ container_tags : Optional tags this memory should be containerized by. This can be an ID for your
408395 user, a project ID, or any other identifier you wish to use to group memories.
409396
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-
414397 content: The content to extract and process into a memory. This can be a URL to a
415398 website, a PDF, an image, or a video.
416399
@@ -443,7 +426,6 @@ async def update(
443426 f"/v3/memories/{ id } " ,
444427 body = await async_maybe_transform (
445428 {
446- "container_tag" : container_tag ,
447429 "container_tags" : container_tags ,
448430 "content" : content ,
449431 "custom_id" : custom_id ,
@@ -554,7 +536,6 @@ async def delete(
554536 async def add (
555537 self ,
556538 * ,
557- container_tag : str | NotGiven = NOT_GIVEN ,
558539 container_tags : List [str ] | NotGiven = NOT_GIVEN ,
559540 content : str | NotGiven = NOT_GIVEN ,
560541 custom_id : str | NotGiven = NOT_GIVEN ,
@@ -570,13 +551,9 @@ async def add(
570551 Add a memory with any content type (text, url, file, etc.) and metadata
571552
572553 Args:
573- container_tag : Optional tag this memory should be containerized by. This can be an ID for your
554+ container_tags : Optional tags this memory should be containerized by. This can be an ID for your
574555 user, a project ID, or any other identifier you wish to use to group memories.
575556
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-
580557 content: The content to extract and process into a memory. This can be a URL to a
581558 website, a PDF, an image, or a video.
582559
@@ -607,7 +584,6 @@ async def add(
607584 "/v3/memories" ,
608585 body = await async_maybe_transform (
609586 {
610- "container_tag" : container_tag ,
611587 "container_tags" : container_tags ,
612588 "content" : content ,
613589 "custom_id" : custom_id ,
0 commit comments