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
Modifier and Type Method Description abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>>
create(BetaVectorStoreFileBatchCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /vector_stores/{vector_store_id}/file_batches
, but is otherwise the same as FileBatchServiceAsync.create.abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>>
create(BetaVectorStoreFileBatchCreateParams params)
Returns a raw HTTP response for post /vector_stores/{vector_store_id}/file_batches
, but is otherwise the same as FileBatchServiceAsync.create.abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>>
retrieve(BetaVectorStoreFileBatchRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /vector_stores/{vector_store_id}/file_batches/{batch_id}
, but is otherwise the same as FileBatchServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>>
retrieve(BetaVectorStoreFileBatchRetrieveParams 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.abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>>
cancel(BetaVectorStoreFileBatchCancelParams params, RequestOptions requestOptions)
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.abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>>
cancel(BetaVectorStoreFileBatchCancelParams 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.abstract CompletableFuture<HttpResponseFor<BetaVectorStoreFileBatchListFilesPageAsync>>
listFiles(BetaVectorStoreFileBatchListFilesParams params, RequestOptions requestOptions)
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.abstract CompletableFuture<HttpResponseFor<BetaVectorStoreFileBatchListFilesPageAsync>>
listFiles(BetaVectorStoreFileBatchListFilesParams 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.-
-
Method Detail
-
create
abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> create(BetaVectorStoreFileBatchCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /vector_stores/{vector_store_id}/file_batches
, but is otherwise the same as FileBatchServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> create(BetaVectorStoreFileBatchCreateParams params)
Returns a raw HTTP response for
post /vector_stores/{vector_store_id}/file_batches
, but is otherwise the same as FileBatchServiceAsync.create.
-
retrieve
abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> retrieve(BetaVectorStoreFileBatchRetrieveParams params, RequestOptions requestOptions)
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
abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> retrieve(BetaVectorStoreFileBatchRetrieveParams 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.
-
cancel
abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> cancel(BetaVectorStoreFileBatchCancelParams params, RequestOptions requestOptions)
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
abstract CompletableFuture<HttpResponseFor<VectorStoreFileBatch>> cancel(BetaVectorStoreFileBatchCancelParams 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.
-
listFiles
abstract CompletableFuture<HttpResponseFor<BetaVectorStoreFileBatchListFilesPageAsync>> listFiles(BetaVectorStoreFileBatchListFilesParams params, RequestOptions requestOptions)
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
abstract CompletableFuture<HttpResponseFor<BetaVectorStoreFileBatchListFilesPageAsync>> listFiles(BetaVectorStoreFileBatchListFilesParams 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.
-
-
-
-