Andreas Varotsis
Andreas Varotsis
Giving this a bit of a boost, because I've been considering make a fork that removes flake8 (which I find a bit too bossy for my tastes) and potentially adds...
As a starter for ten, I'd say worth clarifying in the docs that Windows support is sub-par, but still pretty good (and better than doing your own cookiecutter variant) -...
Oo, very exciting! I'm actually just working on my first project using the template, and am hoping to finish it off tomorrow and tie it up into a nice package/container,...
As a temporary workaround, I'm using python-dotenv for windows and it works quite well for me, eg ``` dotenv import dotenv_values config = dotenv_values("../.secrets") ```
So what needs doing on this? I'm a bit lost :P
@ESKYoung let me go try and muck in! So is "best-practice" with the current model for windows users to load the .secret and .env files using their relative path? I...
Glad I'm not the only one! It looks like it's an issue pulling out the Jinja2 template or similar...May have to explore alternative solutions to good Python/Jupyter static pages! Have...
+1 from me, it's a shame this exists on the elasticsearch store but not opensearch!
So ironically, I've since discovered this actually works if you just copy the ElasticSearch implementation in OpenSearch.... see example below. @younes-io ``` opensearch_hybrid_retriever = vectorstore.as_retriever( k='5', strategy=ElasticsearchStore.ApproxRetrievalStrategy( hybrid=True)) ```
Do people have thoughts around if the ElasticSearhc import above works, and if so, should we add to docs? Happy to write the PR, but aware that it's slightly messy...