Spaces:
Build error
Build error
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,21 +10,21 @@ pinned: false
|
|
| 10 |
license: apache-2.0
|
| 11 |
---
|
| 12 |
|
| 13 |
-
# Rupeia
|
| 14 |
|
| 15 |
-
**AI-powered
|
| 16 |
|
| 17 |
-
 <!-- Replace with actual screenshot -->
|
| 18 |
|
| 19 |
## π Quick Start
|
| 20 |
|
| 21 |
+
### Local Deployment
|
| 22 |
```bash
|
| 23 |
+
git clone https://github.com/your-repo/rupeia-chatbot
|
| 24 |
+
cd rupeia-chatbot
|
| 25 |
+
pip install -r requirements.txt # Python 3.10+
|
| 26 |
|
| 27 |
+
# Configure model paths
|
| 28 |
+
echo "model_path: models/distilgpt2\ndata_path: data/knowledge_base" > config/config.yaml
|
| 29 |
|
| 30 |
+
python app.py # Access at http://localhost:7860
|
|
|