mirror of
https://github.com/Shubhamsaboo/awesome-llm-apps.git
synced 2026-05-04 22:19:09 -05:00
Add Knowledge Graph RAG with Verifiable Citations example
This commit is contained in:
12
rag_tutorials/knowledge_graph_rag_citations/Dockerfile
Normal file
12
rag_tutorials/knowledge_graph_rag_citations/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY knowledge_graph_rag.py .
|
||||
|
||||
EXPOSE 8501
|
||||
|
||||
CMD ["streamlit", "run", "knowledge_graph_rag.py", "--server.address", "0.0.0.0"]
|
||||
Reference in New Issue
Block a user