Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 2.49 KB

createvectorstorefilebatchrequest.md

File metadata and controls

20 lines (15 loc) · 2.49 KB

CreateVectorStoreFileBatchRequest

Example Usage

import { CreateVectorStoreFileBatchRequest } from "argot-open-ai/models/components";

let value: CreateVectorStoreFileBatchRequest = {
  fileIds: [
    "<value>",
  ],
};

Fields

Field Type Required Description
fileIds string[] ✔️ A list of File IDs that the vector store should use. Useful for tools like file_search that can access files.
chunkingStrategy components.ChunkingStrategyRequestParam The chunking strategy used to chunk the file(s). If not set, will use the auto strategy.