Find answers from the community

Updated 9 months ago

```

Plain Text
import weaviate
from llama_index.vector_stores import WeaviateVectorStore

weaviate_client = weaviate.Client("http://localhost:8080")  # Connect with default parameters
    
    vector_store = WeaviateVectorStore(
        weaviate_client=weaviate_client, index_name="LlamaIndex"
    )

How to delete the index?
L
2 comments
Use the weaviate client, I'm sure they have docs
Add a reply
Sign up and join the conversation on Discord