Class FileServiceImpl.WithRawResponseImpl
-
- All Implemented Interfaces:
-
com.openai.services.blocking.beta.vectorStores.FileService.WithRawResponse
public final class FileServiceImpl.WithRawResponseImpl implements FileService.WithRawResponse
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<VectorStoreFile>
create(BetaVectorStoreFileCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /vector_stores/{vector_store_id}/files
, but is otherwise the same as FileService.create.HttpResponseFor<VectorStoreFile>
retrieve(BetaVectorStoreFileRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /vector_stores/{vector_store_id}/files/{file_id}
, but is otherwise the same as FileService.retrieve.HttpResponseFor<BetaVectorStoreFileListPage>
list(BetaVectorStoreFileListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /vector_stores/{vector_store_id}/files
, but is otherwise the same as FileService.list.HttpResponseFor<VectorStoreFileDeleted>
delete(BetaVectorStoreFileDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for delete /vector_stores/{vector_store_id}/files/{file_id}
, but is otherwise the same as FileService.delete.-
-
Method Detail
-
create
HttpResponseFor<VectorStoreFile> create(BetaVectorStoreFileCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /vector_stores/{vector_store_id}/files
, but is otherwise the same as FileService.create.
-
retrieve
HttpResponseFor<VectorStoreFile> retrieve(BetaVectorStoreFileRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /vector_stores/{vector_store_id}/files/{file_id}
, but is otherwise the same as FileService.retrieve.
-
list
HttpResponseFor<BetaVectorStoreFileListPage> list(BetaVectorStoreFileListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /vector_stores/{vector_store_id}/files
, but is otherwise the same as FileService.list.
-
delete
HttpResponseFor<VectorStoreFileDeleted> delete(BetaVectorStoreFileDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
delete /vector_stores/{vector_store_id}/files/{file_id}
, but is otherwise the same as FileService.delete.
-
-
-
-