@@ -186,7 +186,7 @@ def create_and_poll(
186
186
self ,
187
187
vector_store_id : str ,
188
188
* ,
189
- file_ids : List [str ],
189
+ file_ids : SequenceNotStr [str ],
190
190
poll_interval_ms : int | NotGiven = NOT_GIVEN ,
191
191
chunking_strategy : FileChunkingStrategyParam | NotGiven = NOT_GIVEN ,
192
192
) -> VectorStoreFileBatch :
@@ -320,7 +320,7 @@ def upload_and_poll(
320
320
* ,
321
321
files : Iterable [FileTypes ],
322
322
max_concurrency : int = 5 ,
323
- file_ids : List [str ] = [],
323
+ file_ids : SequenceNotStr [str ] = [],
324
324
poll_interval_ms : int | NotGiven = NOT_GIVEN ,
325
325
chunking_strategy : FileChunkingStrategyParam | NotGiven = NOT_GIVEN ,
326
326
) -> VectorStoreFileBatch :
@@ -523,7 +523,7 @@ async def create_and_poll(
523
523
self ,
524
524
vector_store_id : str ,
525
525
* ,
526
- file_ids : List [str ],
526
+ file_ids : SequenceNotStr [str ],
527
527
poll_interval_ms : int | NotGiven = NOT_GIVEN ,
528
528
chunking_strategy : FileChunkingStrategyParam | NotGiven = NOT_GIVEN ,
529
529
) -> VectorStoreFileBatch :
@@ -657,7 +657,7 @@ async def upload_and_poll(
657
657
* ,
658
658
files : Iterable [FileTypes ],
659
659
max_concurrency : int = 5 ,
660
- file_ids : List [str ] = [],
660
+ file_ids : SequenceNotStr [str ] = [],
661
661
poll_interval_ms : int | NotGiven = NOT_GIVEN ,
662
662
chunking_strategy : FileChunkingStrategyParam | NotGiven = NOT_GIVEN ,
663
663
) -> VectorStoreFileBatch :
0 commit comments