@@ -51,6 +51,7 @@ def documents(
5151 q : str ,
5252 categories_filter : SequenceNotStr [str ] | Omit = omit ,
5353 chunk_threshold : float | Omit = omit ,
54+ container_tag : str | Omit = omit ,
5455 container_tags : SequenceNotStr [str ] | Omit = omit ,
5556 doc_id : str | Omit = omit ,
5657 document_threshold : float | Omit = omit ,
@@ -80,6 +81,8 @@ def documents(
8081 chunks, more results), 1 is most sensitive (returns lesser chunks, accurate
8182 results)
8283
84+ container_tag: Optional single container tag. Use this or containerTags.
85+
8386 container_tags: Optional tags this search should be containerized by. This can be an ID for your
8487 user, a project ID, or any other identifier you wish to use to filter documents.
8588
@@ -124,6 +127,7 @@ def documents(
124127 "q" : q ,
125128 "categories_filter" : categories_filter ,
126129 "chunk_threshold" : chunk_threshold ,
130+ "container_tag" : container_tag ,
127131 "container_tags" : container_tags ,
128132 "doc_id" : doc_id ,
129133 "document_threshold" : document_threshold ,
@@ -149,6 +153,7 @@ def execute(
149153 q : str ,
150154 categories_filter : SequenceNotStr [str ] | Omit = omit ,
151155 chunk_threshold : float | Omit = omit ,
156+ container_tag : str | Omit = omit ,
152157 container_tags : SequenceNotStr [str ] | Omit = omit ,
153158 doc_id : str | Omit = omit ,
154159 document_threshold : float | Omit = omit ,
@@ -178,6 +183,8 @@ def execute(
178183 chunks, more results), 1 is most sensitive (returns lesser chunks, accurate
179184 results)
180185
186+ container_tag: Optional single container tag. Use this or containerTags.
187+
181188 container_tags: Optional tags this search should be containerized by. This can be an ID for your
182189 user, a project ID, or any other identifier you wish to use to filter documents.
183190
@@ -222,6 +229,7 @@ def execute(
222229 "q" : q ,
223230 "categories_filter" : categories_filter ,
224231 "chunk_threshold" : chunk_threshold ,
232+ "container_tag" : container_tag ,
225233 "container_tags" : container_tags ,
226234 "doc_id" : doc_id ,
227235 "document_threshold" : document_threshold ,
@@ -350,6 +358,7 @@ async def documents(
350358 q : str ,
351359 categories_filter : SequenceNotStr [str ] | Omit = omit ,
352360 chunk_threshold : float | Omit = omit ,
361+ container_tag : str | Omit = omit ,
353362 container_tags : SequenceNotStr [str ] | Omit = omit ,
354363 doc_id : str | Omit = omit ,
355364 document_threshold : float | Omit = omit ,
@@ -379,6 +388,8 @@ async def documents(
379388 chunks, more results), 1 is most sensitive (returns lesser chunks, accurate
380389 results)
381390
391+ container_tag: Optional single container tag. Use this or containerTags.
392+
382393 container_tags: Optional tags this search should be containerized by. This can be an ID for your
383394 user, a project ID, or any other identifier you wish to use to filter documents.
384395
@@ -423,6 +434,7 @@ async def documents(
423434 "q" : q ,
424435 "categories_filter" : categories_filter ,
425436 "chunk_threshold" : chunk_threshold ,
437+ "container_tag" : container_tag ,
426438 "container_tags" : container_tags ,
427439 "doc_id" : doc_id ,
428440 "document_threshold" : document_threshold ,
@@ -448,6 +460,7 @@ async def execute(
448460 q : str ,
449461 categories_filter : SequenceNotStr [str ] | Omit = omit ,
450462 chunk_threshold : float | Omit = omit ,
463+ container_tag : str | Omit = omit ,
451464 container_tags : SequenceNotStr [str ] | Omit = omit ,
452465 doc_id : str | Omit = omit ,
453466 document_threshold : float | Omit = omit ,
@@ -477,6 +490,8 @@ async def execute(
477490 chunks, more results), 1 is most sensitive (returns lesser chunks, accurate
478491 results)
479492
493+ container_tag: Optional single container tag. Use this or containerTags.
494+
480495 container_tags: Optional tags this search should be containerized by. This can be an ID for your
481496 user, a project ID, or any other identifier you wish to use to filter documents.
482497
@@ -521,6 +536,7 @@ async def execute(
521536 "q" : q ,
522537 "categories_filter" : categories_filter ,
523538 "chunk_threshold" : chunk_threshold ,
539+ "container_tag" : container_tag ,
524540 "container_tags" : container_tags ,
525541 "doc_id" : doc_id ,
526542 "document_threshold" : document_threshold ,
0 commit comments