Vinit710 commited on
Commit
bcff0e2
·
verified ·
1 Parent(s): 4d87adf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -18
README.md CHANGED
@@ -1,18 +1,20 @@
1
- """
2
- # 🧠 Tech RAG Chatbot (Hugging Face Space Template)
3
-
4
- This is a working template for a RAG chatbot using:
5
- - Chroma vector DB (local)
6
- - Hugging Face LLM (e.g. Mistral)
7
- - Daily document update support
8
- - Streamlit UI
9
-
10
- ## 🧪 How to Use
11
- 1. Upload your prebuilt `chroma_store/` folder
12
- 2. Add `.txt` files to `new_data/`
13
- 3. Click "Update Vector Database"
14
- 4. Ask questions!
15
-
16
- ## 🚀 Deployment
17
- Push this repo to a Hugging Face Space (Streamlit) and it will run!
18
- """
 
 
 
1
+ ---
2
+ title: "Tech RAG Chatbot"
3
+ emoji: "🧠"
4
+ colorFrom: "blue"
5
+ colorTo: "green"
6
+ sdk: "streamlit"
7
+ sdk_version: "1.32.0"
8
+ app_file: "app.py"
9
+ pinned: false
10
+ ---
11
+
12
+ # 🧠 Tech RAG Chatbot
13
+
14
+ This chatbot uses a Retrieval-Augmented Generation (RAG) pipeline with:
15
+ - Chroma vector database (local)
16
+ - Hugging Face LLM (e.g., Mistral-7B)
17
+ - Streamlit interface
18
+ - Daily updatable knowledge base from `new_data/`
19
+
20
+ Ask questions about the latest in tech and get answers powered by LLM + your private knowledge store!