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.
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/CHANGELOG.md +6 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/PKG-INFO +1 -1
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/qdrant/document_store.py +8 -2
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/.gitignore +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/LICENSE.txt +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/README.md +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/examples/embedding_retrieval.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/pydoc/config_docusaurus.yml +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/pyproject.toml +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/components/retrievers/py.typed +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/components/retrievers/qdrant/__init__.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/components/retrievers/qdrant/retriever.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/py.typed +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/qdrant/__init__.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/qdrant/converters.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/qdrant/filters.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/qdrant/migrate_to_sparse.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/__init__.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/conftest.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_converters.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_dict_converters.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_document_store.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_document_store_async.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_embedding_retriever.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_filters.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_hybrid_retriever.py +0 -0
- {qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/tests/test_sparse_embedding_retriever.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: qdrant-haystack
|
|
3
|
-
Version: 10.2.
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{qdrant_haystack-10.2.0 → qdrant_haystack-10.2.1}/src/haystack_integrations/document_stores/py.typed
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|