@@ -118,6 +118,7 @@ def update(
118118 def list (
119119 self ,
120120 * ,
121+ container_tags : List [str ] | NotGiven = NOT_GIVEN ,
121122 filters : str | NotGiven = NOT_GIVEN ,
122123 limit : str | NotGiven = NOT_GIVEN ,
123124 order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
@@ -134,6 +135,9 @@ def list(
134135 Retrieves a paginated list of memories with their metadata and workflow status
135136
136137 Args:
138+ container_tags: Optional tags this memory should be containerized by. This can be an ID for your
139+ user, a project ID, or any other identifier you wish to use to group memories.
140+
137141 filters: Optional filters to apply to the search
138142
139143 limit: Number of items per page
@@ -161,6 +165,7 @@ def list(
161165 timeout = timeout ,
162166 query = maybe_transform (
163167 {
168+ "container_tags" : container_tags ,
164169 "filters" : filters ,
165170 "limit" : limit ,
166171 "order" : order ,
@@ -434,6 +439,7 @@ async def update(
434439 async def list (
435440 self ,
436441 * ,
442+ container_tags : List [str ] | NotGiven = NOT_GIVEN ,
437443 filters : str | NotGiven = NOT_GIVEN ,
438444 limit : str | NotGiven = NOT_GIVEN ,
439445 order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
@@ -450,6 +456,9 @@ async def list(
450456 Retrieves a paginated list of memories with their metadata and workflow status
451457
452458 Args:
459+ container_tags: Optional tags this memory should be containerized by. This can be an ID for your
460+ user, a project ID, or any other identifier you wish to use to group memories.
461+
453462 filters: Optional filters to apply to the search
454463
455464 limit: Number of items per page
@@ -477,6 +486,7 @@ async def list(
477486 timeout = timeout ,
478487 query = await async_maybe_transform (
479488 {
489+ "container_tags" : container_tags ,
480490 "filters" : filters ,
481491 "limit" : limit ,
482492 "order" : order ,
0 commit comments