feat: add URL indexing directly from chat input (#571) bump:patch

* feat: enable lightrag by default and add graphrag key check

* feat: add URL indexing from chatbox
This commit is contained in:
Tuan Anh Nguyen Dang (Tadashi_Cin)
2024-12-15 23:13:52 +07:00
committed by GitHub
parent a0c9a6e8de
commit 7a02cb72af
8 changed files with 71 additions and 12 deletions

View File

@@ -296,7 +296,7 @@ SETTINGS_REASONING = {
}
USE_NANO_GRAPHRAG = config("USE_NANO_GRAPHRAG", default=False, cast=bool)
USE_LIGHTRAG = config("USE_LIGHTRAG", default=False, cast=bool)
USE_LIGHTRAG = config("USE_LIGHTRAG", default=True, cast=bool)
GRAPHRAG_INDEX_TYPES = ["ktem.index.file.graph.GraphRAGIndex"]