weaviate-haystack 2.1.3__tar.gz → 2.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/PKG-INFO +1 -1
  2. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/src/haystack_integrations/document_stores/weaviate/document_store.py +1 -1
  3. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/.gitignore +0 -0
  4. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/CHANGELOG.md +0 -0
  5. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/LICENSE.txt +0 -0
  6. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/README.md +0 -0
  7. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/docker-compose.yml +0 -0
  8. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/pydoc/config.yml +0 -0
  9. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/pyproject.toml +0 -0
  10. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/src/haystack_integrations/components/retrievers/weaviate/__init__.py +0 -0
  11. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/src/haystack_integrations/components/retrievers/weaviate/bm25_retriever.py +0 -0
  12. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/src/haystack_integrations/components/retrievers/weaviate/embedding_retriever.py +0 -0
  13. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/src/haystack_integrations/document_stores/weaviate/__init__.py +0 -0
  14. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/src/haystack_integrations/document_stores/weaviate/_filters.py +0 -0
  15. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/src/haystack_integrations/document_stores/weaviate/auth.py +0 -0
  16. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/tests/__init__.py +0 -0
  17. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/tests/conftest.py +0 -0
  18. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/tests/test_auth.py +0 -0
  19. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/tests/test_bm25_retriever.py +0 -0
  20. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/tests/test_document_store.py +0 -0
  21. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/tests/test_embedding_retriever.py +0 -0
  22. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/tests/test_files/robot1.jpg +0 -0
  23. {weaviate_haystack-2.1.3 → weaviate_haystack-2.2.0}/tests/test_filters.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: weaviate-haystack
3
- Version: 2.1.3
3
+ Version: 2.2.0
4
4
  Summary: An integration of Weaviate vector database with Haystack
5
5
  Project-URL: Source, https://github.com/deepset-ai/haystack-core-integrations
6
6
  Project-URL: Documentation, https://github.com/deepset-ai/haystack-core-integrations/blob/main/integrations/weaviate/README.md
@@ -203,7 +203,7 @@ class WeaviateDocumentStore:
203
203
  self._client.connect()
204
204
 
205
205
  # Test connection, it will raise an exception if it fails.
206
- self._client.collections._get_all(simple=True)
206
+ self._client.collections.list_all(simple=True)
207
207
  if not self._client.collections.exists(self._collection_settings["class"]):
208
208
  self._client.collections.create_from_dict(self._collection_settings)
209
209