haystack-core-integrations
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
🚫 This is blocked by #223 We need to add `source_tag` to `PineconeDocumentStore` and set it as "haystack" to track this integration. See relevant [docs](https://pinecone-2-partner-integration-guide.mintlify.app/integrations/build-integration/attribute-api-activity) for more information about the...
Hello, i'am using ElasticSearch as DocumentStore. So, i am using elastic search retrieval as follows ``` embedding_retriever: init_parameters: document_store: embedding_similarity_function: l2_norm init_parameters: hosts: http://elasticsearch:9200 type: haystack_integrations.document_stores.elasticsearch.document_store.ElasticsearchDocumentStore num_candidates: 10 top_k: 10...
## Summary and motivation Elasticsearch offers multiple retrieval features including - approximate dense vector retrieval with embedding inference in Python or in Elasticsearch - exact dense vector retrieval with embedding...
**Is your feature request related to a problem? Please describe.** The current implementation of MongoDBAtlasDocumentStore only supports specific MongoDB document schema. Content is expected to be stored in the `content`...
**Is your feature request related to a problem? Please describe.** This is not related a problem, it's an additional functionality. **Describe the solution you'd like** I'd like to use a...
Dear developers, I'm using an ElasticSearchDocumentStore with authentication like so: ``` document_store = ElasticsearchDocumentStore(hosts = "https://localhost:9200", index = INDEX, basic_auth=("elastic", ELASTIC_PASSWORD), ssl_assert_fingerprint=CERT_FINGERPRINT,) ``` and have an ElasticsearchEmbeddingRetriever in my pipeline....
**Is your feature request related to a problem? Please describe.** There's no component to use [Jina's Reader API](https://jina.ai/reader/) with Haystack. **Describe the solution you'd like** A new JinaHTMLtoDocument (name TBD)...
### important - the `embedding_field` init parameter of `QdrantDocumentStore` will break things if not set to the default value ("embedding") -> should be removed - the `return_embedding` init parameter of...
I have installed elasticsearch locally and run it as a deamon according to https://www.elastic.co/guide/en/elasticsearch/reference/current/starting-elasticsearch.html I have exported ELASTIC_PASSWORD and ES_HOME environtment variables When I run document_store = ElasticsearchDocumentStore(hosts = "http://localhost:9200")...