Package com.openai.services.blocking
Interface VectorStoreService
-
- All Implemented Interfaces:
public interface VectorStoreService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
VectorStoreService.WithRawResponse
A view of VectorStoreService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract VectorStoreService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
files
abstract FileService files()
-
fileBatches
abstract FileBatchService fileBatches()
-
create
VectorStore create()
Create a vector store.
-
create
abstract VectorStore create(VectorStoreCreateParams params, RequestOptions requestOptions)
-
create
VectorStore create(VectorStoreCreateParams params)
-
create
VectorStore create(RequestOptions requestOptions)
-
retrieve
VectorStore retrieve(VectorStoreRetrieveParams params)
Retrieves a vector store.
-
retrieve
abstract VectorStore retrieve(VectorStoreRetrieveParams params, RequestOptions requestOptions)
-
update
VectorStore update(VectorStoreUpdateParams params)
Modifies a vector store.
-
update
abstract VectorStore update(VectorStoreUpdateParams params, RequestOptions requestOptions)
-
list
VectorStoreListPage list()
Returns a list of vector stores.
-
list
abstract VectorStoreListPage list(VectorStoreListParams params, RequestOptions requestOptions)
-
list
VectorStoreListPage list(VectorStoreListParams params)
-
list
VectorStoreListPage list(RequestOptions requestOptions)
-
delete
VectorStoreDeleted delete(VectorStoreDeleteParams params)
Delete a vector store.
-
delete
abstract VectorStoreDeleted delete(VectorStoreDeleteParams params, RequestOptions requestOptions)
-
search
VectorStoreSearchPage search(VectorStoreSearchParams params)
Search a vector store for relevant chunks based on a query and file attributes filter.
-
search
abstract VectorStoreSearchPage search(VectorStoreSearchParams params, RequestOptions requestOptions)
-
-
-
-