Creating vector

The vectorlake.create() method is used to create a new vector database (referred to as a "vectorlake") in your account. When a new vectorlake is created, it allows you to store and manage vectors for various machine learning or similarity search tasks.

Example Usage

vector_create = vectorlake.create()
print("vector_create----", vector_create)

Example Response

vector_create---- {'vectorlake_id': 'wgzay4h10papv5no', 'message': 'Vectorlake with same name already exists in this account.', 'vectorlake_name': ''}

Last updated