qdrant-haystack icon indicating copy to clipboard operation
qdrant-haystack copied to clipboard

An integration of Qdrant ANN vector database backend with Haystack

Results 9 qdrant-haystack issues
Sort by recently updated
recently updated
newest added

updates: - [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v6.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.4.0...v6.0.0) - https://github.com/psf/black → https://github.com/psf/black-pre-commit-mirror - [github.com/psf/black-pre-commit-mirror: 23.9.1 → 25.9.0](https://github.com/psf/black-pre-commit-mirror/compare/23.9.1...25.9.0) - [github.com/PyCQA/isort: 5.12.0 → 6.1.0](https://github.com/PyCQA/isort/compare/5.12.0...6.1.0)

Are there plans to add a document store implementation for v2? See here for Chroma and ElasticSearch integrations. Pinecone seems to be added right now: https://github.com/deepset-ai/haystack-core-integrations

According to qdrant, the optimal strategy for Multitenancy is partioning. > How many collections should you create? In most cases, you should only use a single collection with payload-based partitioning....

I'm using qdrant-haystack 1.0.11 with farm-haystack==1.21.2 and python 3.10.13 on Win10 and Qdrant running in Docker. When updating the embeddings of a document store, document_store.update_embeddings seems to update all embeddings...

# Pull Request ## Description Add `batch_size` parameter to __init__. The batch_size parameter specified in the __init__ of qdrant for the functions `get_all_documents(), get_all_documents_generator(), get_documents_by_id()`, `write_documents() `(NOT for update_embeddings) not...

Is your feature request related to a problem? Please describe. I am using various document stores and notice some differences in the __init__. For instance while Opensearch, Weaviate or Elasticsearch...

In qdrant you can pass hnsw_ef to the SearchParams to indicate the ef_search value. However,this feature is not present in qdrant-haystack. My idea would be to add a parameter to...

Hello, I wanted to implement the following example with Qdrant: https://haystack.deepset.ai/tutorials/15_tableqa Initialisation of the DocumentStore: document_store = QdrantDocumentStore( ":memory:", index="document", embedding_dim=768 ) A list with Document(content=current_df, content_type="table", id=key) is created...