-
Notifications
You must be signed in to change notification settings - Fork 65
chore: adds graph rag chat application to recipes #2655
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: adds graph rag chat application to recipes #2655
Conversation
@jeffmaury Should I wait with this PR until is containers/ai-lab-recipes#801 merged? Also I need to update the readme (I've just copied one from different RAG), but is that something that we extract from recipes/natural_language_processing/graph_rag/README.md? |
Yes recipe should be merged. And yes this is copy of the recipe README.md |
59938df
to
8b21a0a
Compare
Signed-off-by: Evzen Gasta <[email protected]>
8b21a0a
to
2d124ec
Compare
packages/backend/src/assets/ai.json
Outdated
"description": "This demo provides a recipe to build out a custom Graph RAG (Graph Retrieval Augmented Generation) application using the repo LightRag which abstracts Microsoft's GraphRag implementation. It consists of two main components; the Model Service, and the AI Application with a built in Database.", | ||
"name": "Graph RAG Chat Application", | ||
"repository": "https://github.com/containers/ai-lab-recipes", | ||
"ref": "v1.5.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be main or a commit id as iy is not in the 1.5.0 release
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using latest commit id 53def1030a84ad3dc07deee6e02d905efd5e6d59
now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with the proposed change
packages/backend/src/assets/ai.json
Outdated
"recommended": ["hf.instructlab.granite-7b-lab-GGUF"], | ||
"backend": "llama-cpp", | ||
"languages": ["python"], | ||
"frameworks": ["streamlit", "langchain"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"frameworks": ["streamlit", "langchain"] | |
"frameworks": ["streamlit", "lightrag"] |
c3fa58d
to
168113d
Compare
packages/backend/src/assets/ai.json
Outdated
"recommended": ["hf.instructlab.granite-7b-lab-GGUF"], | ||
"backend": "llama-cpp", | ||
"languages": ["python"], | ||
"frameworks": ["streamlit", "lighrag"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"frameworks": ["streamlit", "lighrag"] | |
"frameworks": ["streamlit", "lightrag"] |
Signed-off-by: Evzen Gasta <[email protected]>
168113d
to
f668134
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
app works correctly, tested on mac (applehv)
What does this PR do?
Adds Graph Rag chat application to AI Lab recipes
Screenshot / video of UI
What issues does this PR fix or reference?
Closes #2629
How to test this PR?