Retrieves a list of all available indexes from the CyborgDB microservice.
client.list_indexes()

Returns

List[str]: A list of strings containing the index names currently available on the CyborgDB service.

Exceptions

Example Usage

from cyborgdb import Client

# Initialize client
client = Client('https://localhost:8000', 'your-api-key')

# Get list of all indexes
indexes = client.list_indexes()
print(f"Available indexes: {indexes}")
# Output: ['documents', 'embeddings', 'semantic-search']