fix: selecting search all does not work on LightRAG / NanoGraphRAG (#627) #none

* fix: base path

* fix: select all doesn't work

* fix: adding new documents should update the existing index within the file collection instead of creating new one #561

* fix linter issues

* feat: update NanoGraphRAG with global collection search

---------

Co-authored-by: Tadashi <tadashi@cinnamon.is>
This commit is contained in:
Varun Sharma
2025-02-14 15:13:39 +01:00
committed by GitHub
parent 0b090896fd
commit e3921f7704
6 changed files with 173 additions and 29 deletions

View File

@@ -317,6 +317,7 @@ SETTINGS_REASONING = {
},
}
USE_GLOBAL_GRAPHRAG = config("USE_GLOBAL_GRAPHRAG", default=True, cast=bool)
USE_NANO_GRAPHRAG = config("USE_NANO_GRAPHRAG", default=False, cast=bool)
USE_LIGHTRAG = config("USE_LIGHTRAG", default=True, cast=bool)
USE_MS_GRAPHRAG = config("USE_MS_GRAPHRAG", default=True, cast=bool)