@@ -79,12 +79,14 @@ def create(
7979 file_ids: A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that
8080 the vector store should use. Useful for tools like `file_search` that can access
8181 files. If `attributes` or `chunking_strategy` are provided, they will be applied
82- to all files in the batch. Mutually exclusive with `files`.
82+ to all files in the batch. The maximum batch size is 2000 files. Mutually
83+ exclusive with `files`.
8384
8485 files: A list of objects that each include a `file_id` plus optional `attributes` or
8586 `chunking_strategy`. Use this when you need to override metadata for specific
8687 files. The global `attributes` or `chunking_strategy` will be ignored and must
87- be specified for each file. Mutually exclusive with `file_ids`.
88+ be specified for each file. The maximum batch size is 2000 files. Mutually
89+ exclusive with `file_ids`.
8890
8991 extra_headers: Send extra headers
9092
@@ -438,12 +440,14 @@ async def create(
438440 file_ids: A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that
439441 the vector store should use. Useful for tools like `file_search` that can access
440442 files. If `attributes` or `chunking_strategy` are provided, they will be applied
441- to all files in the batch. Mutually exclusive with `files`.
443+ to all files in the batch. The maximum batch size is 2000 files. Mutually
444+ exclusive with `files`.
442445
443446 files: A list of objects that each include a `file_id` plus optional `attributes` or
444447 `chunking_strategy`. Use this when you need to override metadata for specific
445448 files. The global `attributes` or `chunking_strategy` will be ignored and must
446- be specified for each file. Mutually exclusive with `file_ids`.
449+ be specified for each file. The maximum batch size is 2000 files. Mutually
450+ exclusive with `file_ids`.
447451
448452 extra_headers: Send extra headers
449453
0 commit comments