@@ -65,6 +65,7 @@ def create(
6565 self ,
6666 provider : Literal ["notion" , "google-drive" , "onedrive" , "gmail" , "github" , "web-crawler" , "s3" ],
6767 * ,
68+ container_tag : str | Omit = omit ,
6869 container_tags : SequenceNotStr [str ] | Omit = omit ,
6970 document_limit : int | Omit = omit ,
7071 metadata : Optional [Dict [str , Union [str , float , bool ]]] | Omit = omit ,
@@ -94,6 +95,7 @@ def create(
9495 f"/v3/connections/{ provider } " ,
9596 body = maybe_transform (
9697 {
98+ "container_tag" : container_tag ,
9799 "container_tags" : container_tags ,
98100 "document_limit" : document_limit ,
99101 "metadata" : metadata ,
@@ -468,6 +470,7 @@ async def create(
468470 self ,
469471 provider : Literal ["notion" , "google-drive" , "onedrive" , "gmail" , "github" , "web-crawler" , "s3" ],
470472 * ,
473+ container_tag : str | Omit = omit ,
471474 container_tags : SequenceNotStr [str ] | Omit = omit ,
472475 document_limit : int | Omit = omit ,
473476 metadata : Optional [Dict [str , Union [str , float , bool ]]] | Omit = omit ,
@@ -497,6 +500,7 @@ async def create(
497500 f"/v3/connections/{ provider } " ,
498501 body = await async_maybe_transform (
499502 {
503+ "container_tag" : container_tag ,
500504 "container_tags" : container_tags ,
501505 "document_limit" : document_limit ,
502506 "metadata" : metadata ,
0 commit comments