abacusai.vector_store_version
Module Contents
Classes
A version of vector store. |
- class abacusai.vector_store_version.VectorStoreVersion(client, vectorStoreId=None, vectorStoreVersion=None, createdAt=None, status=None, featureGroupVersion=None)
Bases:
abacusai.return_class.AbstractApiClass
A version of vector store.
- Parameters:
client (ApiClient) – An authenticated API Client instance
vectorStoreId (str) – The unique identifier of the vector store.
vectorStoreVersion (str) – The unique identifier of the vector store version.
createdAt (str) – When the vector store was created.
status (str) – The status of creating vector store version.
featureGroupVersion (str) – The unique identifier of the feature group version at which the vector store version is created.
- __repr__()
Return repr(self).
- to_dict()
Get a dict representation of the parameters in this class
- Returns:
The dict value representation of the class parameters
- Return type:
- wait_for_results(timeout=3600)
A waiting call until vector store version indexing and deployment is complete.
- Parameters:
timeout (int, optional) – The waiting time given to the call to finish, if it doesn’t finish by the allocated time, the call is said to be timed out.