You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from haystack.utils import launch_weaviate
launch_weaviate()
from haystack.document_stores import WeaviateDocumentStore
document_store = WeaviateDocumentStore() # assumes Weaviate is running on http://localhost:8080
document_store.write_documents(documents=dicts, batch_size=100)
from haystack.nodes import EmbeddingRetriever
Hey @3CE8D2BAC65BDD6AA9 I was able to get it to work increasing the value of QUERY_MAXIMUM_RESULTS env, the default is 10K, for me doubling it made it work.
I have been trying https://github.com/weaviate/weaviate-examples/blob/main/harrypotter-qa-haystack-weaviate/JUPYTER-HarryPotter-QA-Haystack-Weaviate.ipynb a few times at my local machine.
My code is:
from haystack.utils
everything went smooth until this line:
The error message is:
Any idea how to resolve this?
The text was updated successfully, but these errors were encountered: