Interface FileBatchServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface FileBatchServiceAsync.WithRawResponse
A view of FileBatchServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
create
@MustBeClosed() CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> create(FileBatchCreateParams params)
Returns a raw HTTP response for
post /vector_stores/{vector_store_id}/file_batches
, but is otherwise the same as FileBatchServiceAsync.create.
-
create
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> create(FileBatchCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> retrieve(FileBatchRetrieveParams params)
Returns a raw HTTP response for
get /vector_stores/{vector_store_id}/file_batches/{batch_id}
, but is otherwise the same as FileBatchServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> retrieve(FileBatchRetrieveParams params, RequestOptions requestOptions)
-
cancel
@MustBeClosed() CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> cancel(FileBatchCancelParams params)
Returns a raw HTTP response for
post /vector_stores/{vector_store_id}/file_batches/{batch_id}/cancel
, but is otherwise the same as FileBatchServiceAsync.cancel.
-
cancel
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> cancel(FileBatchCancelParams params, RequestOptions requestOptions)
-
listFiles
@MustBeClosed() CompletableFuture<HttpResponseFor<FileBatchListFilesPageAsync>> listFiles(FileBatchListFilesParams params)
Returns a raw HTTP response for
get /vector_stores/{vector_store_id}/file_batches/{batch_id}/files
, but is otherwise the same as FileBatchServiceAsync.listFiles.
-
listFiles
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<FileBatchListFilesPageAsync>> listFiles(FileBatchListFilesParams params, RequestOptions requestOptions)
-
-
-
-