mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-01 13:47:50 +03:00
ef90e8e672
# Description
Major PR which, among other things, introduces the possibility of easily
customizing the retrieval workflows. Workflows are based on LangGraph,
and can be customized using a [yaml configuration
file](core/tests/test_llm_endpoint.py), and adding the implementation of
the nodes logic into
[quivr_rag_langgraph.py](1a0c98437a/backend/core/quivr_core/quivr_rag_langgraph.py
)
This is a first, simple implementation that will significantly evolve in
the coming weeks to enable more complex workflows (for instance, with
conditional nodes). We also plan to adopt a similar approach for the
ingestion part, i.e. to enable user to easily customize the ingestion
pipeline.
Closes CORE-195, CORE-203, CORE-204
## Checklist before requesting a review
Please delete options that are not relevant.
- [X] My code follows the style guidelines of this project
- [X] I have performed a self-review of my code
- [X] I have commented hard-to-understand areas
- [X] I have ideally added tests that prove my fix is effective or that
my feature works
- [X] New and existing unit tests pass locally with my changes
- [X] Any dependent changes have been merged
## Screenshots (if appropriate):
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit",
|
|
"source.unusedImports": "explicit",
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnSaveMode": "file",
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/.benchmarks/": true,
|
|
"**/.cache/": true,
|
|
"**/.pytest_cache/": true,
|
|
"**/.next/": true,
|
|
"**/build/": true,
|
|
"**/.docusaurus/": true,
|
|
"**/node_modules/": true
|
|
},
|
|
"[python]": {
|
|
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit"
|
|
}
|
|
},
|
|
"python.analysis.extraPaths": [
|
|
"./backend"
|
|
],
|
|
"python.defaultInterpreterPath": "python3",
|
|
"python.testing.pytestArgs": [
|
|
"-v",
|
|
"--color=yes",
|
|
"--envfile=backend/tests/.env_test",
|
|
"backend/"
|
|
],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.autoTestDiscoverOnSaveEnabled": true,
|
|
"python.analysis.autoImportCompletions": true,
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
"python.analysis.diagnosticSeverityOverrides": {
|
|
"reportMissingImports": "error",
|
|
"reportUnusedImport": "warning",
|
|
"reportGeneralTypeIssues": "warning"
|
|
},
|
|
"makefile.configureOnOpen": false
|
|
}
|