I am trying to implement the Extractive QA using the ExtractiveQAPipeline
from Haystack. I did the following steps:
- created the
ElasticSearchDocuemntStore
, - then converted files to documents using
convert_files_to_docs
, - written these documents to the the docstore using
"write_doc"
, - Then used the
BM25Retriver
andFARMReader
. - The used the
ExtractiveQAPipeline
to extract the answers.
When I do pipe.run and pass in the parameters and execute it, I get the following error:
ERROR:posthog:error uploading: HTTPSConnectionPool(host='tm.hs.deepset.ai', port=443): Max retries exceeded with url: /batch/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)')))
I have created the Elasticstore
in another VM and accessing it remotely.
Can anyone please help me?
I tried recreating the document store and tested it but still getting the same error.