qdrant-haystack 10.2.0__tar.gz → 10.2.1__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 (27) hide show
  1. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/CHANGELOG.md +6 -0
  2. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/PKG-INFO +1 -1
  3. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/qdrant/document_store.py +8 -2
  4. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/.gitignore +0 -0
  5. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/LICENSE.txt +0 -0
  6. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/README.md +0 -0
  7. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/examples/embedding_retrieval.py +0 -0
  8. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/pydoc/config_docusaurus.yml +0 -0
  9. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/pyproject.toml +0 -0
  10. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/components/retrievers/py.typed +0 -0
  11. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/components/retrievers/qdrant/__init__.py +0 -0
  12. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/components/retrievers/qdrant/retriever.py +0 -0
  13. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/py.typed +0 -0
  14. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/qdrant/__init__.py +0 -0
  15. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/qdrant/converters.py +0 -0
  16. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/qdrant/filters.py +0 -0
  17. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/qdrant/migrate_to_sparse.py +0 -0
  18. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/__init__.py +0 -0
  19. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/conftest.py +0 -0
  20. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_converters.py +0 -0
  21. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_dict_converters.py +0 -0
  22. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_document_store.py +0 -0
  23. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_document_store_async.py +0 -0
  24. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_embedding_retriever.py +0 -0
  25. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_filters.py +0 -0
  26. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_hybrid_retriever.py +0 -0
  27. {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_sparse_embedding_retriever.py +0 -0
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [integrations/qdrant-v10.2.0] - 2026-02-02
4
+
5
+ ### 🌀 Miscellaneous
6
+
7
+ - Feat: `QdrantDocumentStore` return number deleted docs on `delete_by_filter` (#2807)
8
+
3
9
  ## [integrations/qdrant-v9.6.0] - 2026-02-02
4
10
 
5
11
  ### 🚀 Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qdrant-haystack
3
- Version: 10.2.0
3
+ Version: 10.2.1
4
4
  Summary: An integration of Qdrant ANN vector database backend 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/qdrant/README.md
@@ -983,7 +983,10 @@ class QdrantDocumentStore:
983
983
  Returns the information about the fields from the collection.
984
984
 
985
985
  :returns:
986
- A dictionary mapping field names to their types (e.g., {"field_name": "integer"}).
986
+ A dictionary mapping field names to their types e.g.:
987
+ ```python
988
+ {"field_name": "integer"}
989
+ ```
987
990
  """
988
991
  self._initialize_client()
989
992
  assert self._client is not None
@@ -1001,7 +1004,10 @@ class QdrantDocumentStore:
1001
1004
  Asynchronously returns the information about the fields from the collection.
1002
1005
 
1003
1006
  :returns:
1004
- A dictionary mapping field names to their types (e.g., {"field_name": "integer"}).
1007
+ A dictionary mapping field names to their types e.g.:
1008
+ ```python
1009
+ {"field_name": "integer"}
1010
+ ```
1005
1011
  """
1006
1012
  await self._initialize_async_client()
1007
1013
  assert self._async_client is not None