Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Python
DBConfig
def list_indexes(self)
List[str]
RuntimeError
import cyborgdb_core as cyborgdb index_location = cyborgdb.DBConfig(location='redis', connection_string="redis://localhost") config_location = cyborgdb.DBConfig(location='redis', connection_string="redis://localhost") client = cyborgdb.Client(index_location=index_location, config_location=config_location) print(client.list_indexes()) # Example output: # ["index_one", "index_two", "index_three"]
Was this page helpful?