haystack-core-integrations icon indicating copy to clipboard operation
haystack-core-integrations copied to clipboard

Additional packages (components, document stores and the likes) to extend the capabilities of Haystack version 2.0 and onwards

Results 229 haystack-core-integrations issues
Sort by recently updated
recently updated
newest added

MistralChatAdapter's ALLOWED_PARAMS has `max_tokens` but generation_kwargs is using `max_gen_len`. Because of this discrepancy, `max_tokens` limit is set to the default `512` whenever running the model. - Haystack version: 2.1.2 -...

bug

Allow passing a qdrant filter object instead of a haystack filter object - this is useful when the haystack filter object does not support the use case, e.g. when to...

type:documentation
integration:qdrant

README.md says `Note: integration tests will be skipped unless the env var NVIDIA_API_KEY is set.` with this MR, the statement is now true for all cases.

integration:nvidia

Adding support of newly launched amazon.titan-embed-text-v2:0. Implemented and tested, working fine.

integration:amazon-bedrock

all inference calls should be directed to integrate.api.nvidia.com. the nvcf inference is deprecated and will be removed. this allows for users to get on integrate.api.nvidia.com now and avoid any disruptions.

type:documentation
integration:nvidia

**Is your feature request related to a problem? Please describe.** Llama CPP generators don't support streaming. **Describe the solution you'd like** Implement support for streaming, as done for other generators...

contributions wanted!
feature request
P3
integration:llama_cpp
topic:streaming

All examples showing integration of Qdrant with haystack show how to create a new Qdrant index/collection and use that as a DocumentStore. However, there does not seem to be a...

Fixes: https://github.com/deepset-ai/haystack-core-integrations/issues/655 Added support for custom mapping when creating a new index using ElasticsearchDocumentStore. Tested the fix using the below code: ``` from haystack_integrations.document_stores.elasticsearch import ElasticsearchDocumentStore from haystack import Pipeline...

integration:elasticsearch

**Describe the bug** When calling `LlamaCppGenerator.run()` with `generation_kwargs={"stream": True}`, a TypeError "'generator' object is not subscriptable" is raised in line 97: `replies = [output["choices"][0]["text"]]`, because the `create_completion` function of the...

bug
integration:llama_cpp
topic:streaming

**Is your feature request related to a problem? Please describe.** In `InMemoryEmbeddingRetriever` there is the parameter `return_embedding` that returns also embedding in `Document`, with OpenSearchEmbeddingRetriever I must recalculates embeddings after...

integration:opensearch
feature request
P2