@@ -79,14 +79,16 @@ 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. The maximum batch size is 2000 files. Mutually
83- exclusive with `files`.
82+ to all files in the batch. The maximum batch size is 2000 files. This endpoint
83+ is recommended for multi-file ingestion and helps reduce per-vector-store write
84+ request pressure. Mutually exclusive with `files`.
8485
8586 files: A list of objects that each include a `file_id` plus optional `attributes` or
8687 `chunking_strategy`. Use this when you need to override metadata for specific
8788 files. The global `attributes` or `chunking_strategy` will be ignored and must
88- be specified for each file. The maximum batch size is 2000 files. Mutually
89- exclusive with `file_ids`.
89+ be specified for each file. The maximum batch size is 2000 files. This endpoint
90+ is recommended for multi-file ingestion and helps reduce per-vector-store write
91+ request pressure. Mutually exclusive with `file_ids`.
9092
9193 extra_headers: Send extra headers
9294
@@ -452,14 +454,16 @@ async def create(
452454 file_ids: A list of [File](https://platform.openai.com/docs/api-reference/files) IDs that
453455 the vector store should use. Useful for tools like `file_search` that can access
454456 files. If `attributes` or `chunking_strategy` are provided, they will be applied
455- to all files in the batch. The maximum batch size is 2000 files. Mutually
456- exclusive with `files`.
457+ to all files in the batch. The maximum batch size is 2000 files. This endpoint
458+ is recommended for multi-file ingestion and helps reduce per-vector-store write
459+ request pressure. Mutually exclusive with `files`.
457460
458461 files: A list of objects that each include a `file_id` plus optional `attributes` or
459462 `chunking_strategy`. Use this when you need to override metadata for specific
460463 files. The global `attributes` or `chunking_strategy` will be ignored and must
461- be specified for each file. The maximum batch size is 2000 files. Mutually
462- exclusive with `file_ids`.
464+ be specified for each file. The maximum batch size is 2000 files. This endpoint
465+ is recommended for multi-file ingestion and helps reduce per-vector-store write
466+ request pressure. Mutually exclusive with `file_ids`.
463467
464468 extra_headers: Send extra headers
465469
0 commit comments