Add kadi knowledge graph
Browse files
app.py
CHANGED
@@ -630,10 +630,10 @@ def main():
|
|
630 |
kadichat_tmp_link
|
631 |
)
|
632 |
)
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
|
638 |
# About information
|
639 |
with gr.Tab("About 📝"):
|
@@ -644,11 +644,12 @@ def main():
|
|
644 |
|
645 |
Changelog:
|
646 |
|
|
|
647 |
- 18-10-2024: Add linkage to Kadi.
|
648 |
- 02-10-2024: Code cleaning, release code soon
|
649 |
- 26-09-2024: Switch Vision-LLM to Mistral via API
|
650 |
- 31-08-2024: Make document parsing as a preprocessing step and cache vector-database
|
651 |
-
- 31-05-2024: Add Vision-LLM and Graph-RAG (*preview*)
|
652 |
- 21-05-2024: Add web search in setting (*experimental*)
|
653 |
- 15-03-2024: Add evaluation and improve citation feature
|
654 |
- 20-02-2024: Add citation feature (*experimental*)
|
|
|
630 |
kadichat_tmp_link
|
631 |
)
|
632 |
)
|
633 |
+
with gr.Tab("RAG enhanced with Knowledge Graph (dev) 🔎"):
|
634 |
+
kg_tmp_link = "https://kadi-iam-kadikgraph.static.hf.space"
|
635 |
+
with gr.Blocks(css="""footer {visibility: hidden};""") as preview_tab:
|
636 |
+
gr.HTML("""<iframe src="{}" style="width:100%; height:1024px; overflow:auto"></iframe>""".format(graph_tmp_link))
|
637 |
|
638 |
# About information
|
639 |
with gr.Tab("About 📝"):
|
|
|
644 |
|
645 |
Changelog:
|
646 |
|
647 |
+
- 23-10-2024: Add Kadi knowledge graph as test for Knowledge Graph-RAG.
|
648 |
- 18-10-2024: Add linkage to Kadi.
|
649 |
- 02-10-2024: Code cleaning, release code soon
|
650 |
- 26-09-2024: Switch Vision-LLM to Mistral via API
|
651 |
- 31-08-2024: Make document parsing as a preprocessing step and cache vector-database
|
652 |
+
- 31-05-2024: Add Vision-LLM and draft Knowledge Graph-RAG (*preview*)
|
653 |
- 21-05-2024: Add web search in setting (*experimental*)
|
654 |
- 15-03-2024: Add evaluation and improve citation feature
|
655 |
- 20-02-2024: Add citation feature (*experimental*)
|