I get the below error while uploading my data on Weaviate using HuggingFace API to generate the embeddings.
Code:
vector_store = WeaviateVectorStore(
weaviate_client=client,
index_name="LlamaIndex",
text_key="text"
)
storage_context = StorageContext.from_defaults(vector_store=vector_store)
index = VectorStoreIndex.from_documents(
documents,
storage_context=storage_context,
show_progress=True
)
Error:
What changes should I make to resolve the error?