Saana2005 commited on
Commit
bb0b8cc
·
verified ·
1 Parent(s): d83021a

Upload 3 files

Browse files
Files changed (3) hide show
  1. README.md +9 -19
  2. requirements.txt +13 -3
  3. space.yml +7 -0
README.md CHANGED
@@ -1,19 +1,9 @@
1
- ---
2
- title: Rag Doc Code
3
- emoji: 🚀
4
- colorFrom: red
5
- colorTo: red
6
- sdk: docker
7
- app_port: 8501
8
- tags:
9
- - streamlit
10
- pinned: false
11
- short_description: Streamlit template space
12
- ---
13
-
14
- # Welcome to Streamlit!
15
-
16
- Edit `/src/streamlit_app.py` to customize this app to your heart's desire. :heart:
17
-
18
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
19
- forums](https://discuss.streamlit.io).
 
1
+ # GenAI RAG App (Docs + Code)
2
+
3
+ RAG application that:
4
+ indexes PDF and text documents
5
+ indexes and analyzes source code
6
+ supports explanations, debugging, refactoring, complexity analysis
7
+ supports doc summarization, keywords, bullet points
8
+
9
+ Includes FastAPI backend + Streamlit UI + FAISS vector store
 
 
 
 
 
 
 
 
 
 
requirements.txt CHANGED
@@ -1,3 +1,13 @@
1
- altair
2
- pandas
3
- streamlit
 
 
 
 
 
 
 
 
 
 
 
1
+ fastapi
2
+ uvicorn
3
+ streamlit
4
+ pydantic
5
+ python-multipart
6
+ sentence-transformers
7
+ faiss-cpu
8
+ transformers
9
+ langchain
10
+ langchain-community
11
+ tree-sitter
12
+ pypdf
13
+ torch
space.yml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ title: "GenAI RAG App (Docs + Code)"
2
+ emoji: "🧠"
3
+ colorFrom: "blue"
4
+ colorTo: "green"
5
+ sdk: "streamlit"
6
+ appFile: "app.py"
7
+ pinned: false