Interface VectorStoreService.WithRawResponse
-
- All Implemented Interfaces:
public interface VectorStoreService.WithRawResponse
A view of VectorStoreService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract FileService.WithRawResponse
files()
abstract FileBatchService.WithRawResponse
fileBatches()
abstract HttpResponseFor<VectorStore>
create(BetaVectorStoreCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /vector_stores
, but is otherwise the same as VectorStoreService.create.abstract HttpResponseFor<VectorStore>
create(BetaVectorStoreCreateParams params)
Returns a raw HTTP response for post /vector_stores
, but is otherwise the same as VectorStoreService.create.abstract HttpResponseFor<VectorStore>
retrieve(BetaVectorStoreRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.retrieve.abstract HttpResponseFor<VectorStore>
retrieve(BetaVectorStoreRetrieveParams params)
Returns a raw HTTP response for get /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.retrieve.abstract HttpResponseFor<VectorStore>
update(BetaVectorStoreUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.update.abstract HttpResponseFor<VectorStore>
update(BetaVectorStoreUpdateParams params)
Returns a raw HTTP response for post /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.update.abstract HttpResponseFor<BetaVectorStoreListPage>
list(BetaVectorStoreListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /vector_stores
, but is otherwise the same as VectorStoreService.list.abstract HttpResponseFor<BetaVectorStoreListPage>
list(BetaVectorStoreListParams params)
Returns a raw HTTP response for get /vector_stores
, but is otherwise the same as VectorStoreService.list.abstract HttpResponseFor<BetaVectorStoreListPage>
list()
Returns a raw HTTP response for get /vector_stores
, but is otherwise the same as VectorStoreService.list.HttpResponseFor<BetaVectorStoreListPage>
list(RequestOptions requestOptions)
Returns a raw HTTP response for get /vector_stores
, but is otherwise the same as VectorStoreService.list.abstract HttpResponseFor<VectorStoreDeleted>
delete(BetaVectorStoreDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for delete /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.delete.abstract HttpResponseFor<VectorStoreDeleted>
delete(BetaVectorStoreDeleteParams params)
Returns a raw HTTP response for delete /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.delete.-
-
Method Detail
-
files
abstract FileService.WithRawResponse files()
-
fileBatches
abstract FileBatchService.WithRawResponse fileBatches()
-
create
abstract HttpResponseFor<VectorStore> create(BetaVectorStoreCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /vector_stores
, but is otherwise the same as VectorStoreService.create.
-
create
abstract HttpResponseFor<VectorStore> create(BetaVectorStoreCreateParams params)
Returns a raw HTTP response for
post /vector_stores
, but is otherwise the same as VectorStoreService.create.
-
retrieve
abstract HttpResponseFor<VectorStore> retrieve(BetaVectorStoreRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.retrieve.
-
retrieve
abstract HttpResponseFor<VectorStore> retrieve(BetaVectorStoreRetrieveParams params)
Returns a raw HTTP response for
get /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.retrieve.
-
update
abstract HttpResponseFor<VectorStore> update(BetaVectorStoreUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.update.
-
update
abstract HttpResponseFor<VectorStore> update(BetaVectorStoreUpdateParams params)
Returns a raw HTTP response for
post /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.update.
-
list
abstract HttpResponseFor<BetaVectorStoreListPage> list(BetaVectorStoreListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /vector_stores
, but is otherwise the same as VectorStoreService.list.
-
list
abstract HttpResponseFor<BetaVectorStoreListPage> list(BetaVectorStoreListParams params)
Returns a raw HTTP response for
get /vector_stores
, but is otherwise the same as VectorStoreService.list.
-
list
abstract HttpResponseFor<BetaVectorStoreListPage> list()
Returns a raw HTTP response for
get /vector_stores
, but is otherwise the same as VectorStoreService.list.
-
list
HttpResponseFor<BetaVectorStoreListPage> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /vector_stores
, but is otherwise the same as VectorStoreService.list.
-
delete
abstract HttpResponseFor<VectorStoreDeleted> delete(BetaVectorStoreDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
delete /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.delete.
-
delete
abstract HttpResponseFor<VectorStoreDeleted> delete(BetaVectorStoreDeleteParams params)
Returns a raw HTTP response for
delete /vector_stores/{vector_store_id}
, but is otherwise the same as VectorStoreService.delete.
-
-
-
-