import cyborgdb_core as cyborgdbindex_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)index_name = "my_index"index_key = my_index_key # Use the same 32-byte encryption key used during index creation# Optional: Set up logginglogger = cyborgdb.Logger.instance()logger.configure(level="debug", to_file=True, file_path="index_loading.log")# Load the existing index with logging enabledindex = client.load_index( index_name=index_name, index_key=index_key, logger=logger)