Interface FileBatchService
-
- All Implemented Interfaces:
public interface FileBatchService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
FileBatchService.WithRawResponse
A view of FileBatchService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract FileBatchService.WithRawResponse
withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method. VectorStoreFileBatch
create(FileBatchCreateParams params)
Create a vector store file batch. abstract VectorStoreFileBatch
create(FileBatchCreateParams params, RequestOptions requestOptions)
VectorStoreFileBatch
retrieve(FileBatchRetrieveParams params)
Retrieves a vector store file batch. abstract VectorStoreFileBatch
retrieve(FileBatchRetrieveParams params, RequestOptions requestOptions)
VectorStoreFileBatch
cancel(FileBatchCancelParams params)
Cancel a vector store file batch. abstract VectorStoreFileBatch
cancel(FileBatchCancelParams params, RequestOptions requestOptions)
FileBatchListFilesPage
listFiles(FileBatchListFilesParams params)
Returns a list of vector store files in a batch. abstract FileBatchListFilesPage
listFiles(FileBatchListFilesParams params, RequestOptions requestOptions)
-
-
Method Detail
-
withRawResponse
abstract FileBatchService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
create
VectorStoreFileBatch create(FileBatchCreateParams params)
Create a vector store file batch.
-
create
abstract VectorStoreFileBatch create(FileBatchCreateParams params, RequestOptions requestOptions)
-
retrieve
VectorStoreFileBatch retrieve(FileBatchRetrieveParams params)
Retrieves a vector store file batch.
-
retrieve
abstract VectorStoreFileBatch retrieve(FileBatchRetrieveParams params, RequestOptions requestOptions)
-
cancel
VectorStoreFileBatch cancel(FileBatchCancelParams params)
Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.
-
cancel
abstract VectorStoreFileBatch cancel(FileBatchCancelParams params, RequestOptions requestOptions)
-
listFiles
FileBatchListFilesPage listFiles(FileBatchListFilesParams params)
Returns a list of vector store files in a batch.
-
listFiles
abstract FileBatchListFilesPage listFiles(FileBatchListFilesParams params, RequestOptions requestOptions)
-
-
-
-