interface FileBatchCreateParams {
    chunking_strategy?: FileChunkingStrategyParam;
    file_ids: string[];
}

Properties

chunking_strategy?: FileChunkingStrategyParam

The chunking strategy used to chunk the file(s). If not set, will use the auto strategy. Only applicable if file_ids is non-empty.

file_ids: string[]

A list of File IDs that the vector store should use. Useful for tools like file_search that can access files.