Interface FileBatchServiceAsync
-
- All Implemented Interfaces:
public interface FileBatchServiceAsync
-
-
Method Summary
-
-
Method Detail
-
create
abstract CompletableFuture<VectorStoreFileBatch> create(BetaVectorStoreFileBatchCreateParams params, RequestOptions requestOptions)
Create a vector store file batch.
-
create
abstract CompletableFuture<VectorStoreFileBatch> create(BetaVectorStoreFileBatchCreateParams params)
Create a vector store file batch.
-
retrieve
abstract CompletableFuture<VectorStoreFileBatch> retrieve(BetaVectorStoreFileBatchRetrieveParams params, RequestOptions requestOptions)
Retrieves a vector store file batch.
-
retrieve
abstract CompletableFuture<VectorStoreFileBatch> retrieve(BetaVectorStoreFileBatchRetrieveParams params)
Retrieves a vector store file batch.
-
cancel
abstract CompletableFuture<VectorStoreFileBatch> cancel(BetaVectorStoreFileBatchCancelParams params, RequestOptions requestOptions)
Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.
-
cancel
abstract CompletableFuture<VectorStoreFileBatch> cancel(BetaVectorStoreFileBatchCancelParams params)
Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.
-
listFiles
abstract CompletableFuture<BetaVectorStoreFileBatchListFilesPageAsync> listFiles(BetaVectorStoreFileBatchListFilesParams params, RequestOptions requestOptions)
Returns a list of vector store files in a batch.
-
listFiles
abstract CompletableFuture<BetaVectorStoreFileBatchListFilesPageAsync> listFiles(BetaVectorStoreFileBatchListFilesParams params)
Returns a list of vector store files in a batch.
-
-
-
-