class_prefix is deprecated, please use class_name
but actually, you should use index_name lolclient = weaviate.Client("https://llama-test-8dkemtip.weaviate.network", auth_client_secret=resource_owner_config) loaded_vector_store = WeaviateVectorStore(weaviate_client=client, class_prefix="LlamaIndex_solution") loaded_index = VectorStoreIndex.from_vector_store(loaded_vector_store) query_engine = index.as_query_engine() response = query_engine.query("What happened at interleaf?") print(response)