Package com.openai.services.async.beta
Interface VectorStoreServiceAsync
-
- All Implemented Interfaces:
public interface VectorStoreServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
VectorStoreServiceAsync.WithRawResponse
A view of VectorStoreServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract VectorStoreServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
files
abstract FileServiceAsync files()
-
fileBatches
abstract FileBatchServiceAsync fileBatches()
-
create
abstract CompletableFuture<VectorStore> create(BetaVectorStoreCreateParams params, RequestOptions requestOptions)
Create a vector store.
-
create
abstract CompletableFuture<VectorStore> create(BetaVectorStoreCreateParams params)
Create a vector store.
-
retrieve
abstract CompletableFuture<VectorStore> retrieve(BetaVectorStoreRetrieveParams params, RequestOptions requestOptions)
Retrieves a vector store.
-
retrieve
abstract CompletableFuture<VectorStore> retrieve(BetaVectorStoreRetrieveParams params)
Retrieves a vector store.
-
update
abstract CompletableFuture<VectorStore> update(BetaVectorStoreUpdateParams params, RequestOptions requestOptions)
Modifies a vector store.
-
update
abstract CompletableFuture<VectorStore> update(BetaVectorStoreUpdateParams params)
Modifies a vector store.
-
list
abstract CompletableFuture<BetaVectorStoreListPageAsync> list(BetaVectorStoreListParams params, RequestOptions requestOptions)
Returns a list of vector stores.
-
list
abstract CompletableFuture<BetaVectorStoreListPageAsync> list(BetaVectorStoreListParams params)
Returns a list of vector stores.
-
list
abstract CompletableFuture<BetaVectorStoreListPageAsync> list()
Returns a list of vector stores.
-
list
CompletableFuture<BetaVectorStoreListPageAsync> list(RequestOptions requestOptions)
Returns a list of vector stores.
-
delete
abstract CompletableFuture<VectorStoreDeleted> delete(BetaVectorStoreDeleteParams params, RequestOptions requestOptions)
Delete a vector store.
-
delete
abstract CompletableFuture<VectorStoreDeleted> delete(BetaVectorStoreDeleteParams params)
Delete a vector store.
-
-
-
-