Thanks, currently giving that a try with Weaviate. Is this the notebook to follow?
https://github.com/jerryjliu/llama_index/blob/main/examples/vector_indices/WeaviateIndexDemo.ipynb If so -- I think there's a minor change to the auth client, it seems to now take an API key instead of a username and password for new instances. I've been working on uploading my index to the vector store, but have been running into issues with the requests failing partway through upload. I'll put in some more time working on it and report back.
The new auth line should look like this:
resource_owner_config = weaviate.auth.AuthApiKey(
api_key="API_KEY_HERE"
)