To see which existing encrypted indexes are available to your CyborgDB client, you can use list_indexes:
Copy
Ask AI
from cyborgdb import Client# Create a clientclient = Client('http://localhost:8000', 'your-api-key')# List all available indexesindexes = client.list_indexes()print(indexes)# Example output:# ["index_one", "index_two", "index_three"]
This returns an array of index names that are available to your API key.