I am a newbie using weaviate and just do some experimenting
I have created a class with a name “WmoInfo”. I have loaded a bunch of documents using langchain and created a vectorstore with the following code:
weaviate_vectorstore = Weaviate.from_documents(documents=texts,
embedding=embedding,
client=client,
by_text=False)
after it is created I accidentally delete the “WmoInfo” class.
I am using weaviate with a local docker container.
I can see in the weaviate_data volume still exists.
see below screen shot:
Is it possible to create a new class (maybe with the same name) and assigned it to the vectorstore?
Thanks
