To see which existing encrypted indexes are available to your Cyborg Vector Search client, you can use list_indexes:

import cyborg_vector_search_py as cvs

# Set index location and config location beforehand...

client = cvs.Client(index_location=index_location, config_location=config_location)

indexes = client.list_indexes()

print(indexes)
# Example output:
# ["index_one", "index_two", "index_three"]

API Reference

For more information on listing encrypted indexes, refer to the API reference: