WeaviateVectorStore(
self,
client: weaviate.WeaviateClient,
index_name: Optional[str],
text_key: strWeaviate vector store.
To use, you should have the weaviate-client python package installed.
Example:
import weaviate
from langchain_community.vectorstores import Weaviate
client = weaviate.Client(url=os.environ["WEAVIATE_URL"], ...)
weaviate = Weaviate(client, index_name, text_key)