Spaces:
Sleeping
Sleeping
Ali Abdullah commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -40,18 +40,27 @@ This chatbot leverages modern NLP techniques including sentence embeddings and v
|
|
| 40 |
- Sentence Transformers
|
| 41 |
- dotenv
|
| 42 |
|
| 43 |
-
|
|
|
|
|
|
|
|
|
|
| 44 |
|
|
|
|
| 45 |
```bash
|
| 46 |
python -m venv venv
|
| 47 |
-
source venv/bin/activate # Linux/macOS
|
| 48 |
-
venv\Scripts\activate # Windows
|
| 49 |
|
| 50 |
-
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
|
|
|
|
| 53 |
```bash
|
| 54 |
-
|
| 55 |
|
|
|
|
| 56 |
```bash
|
| 57 |
python app.py
|
|
|
|
| 40 |
- Sentence Transformers
|
| 41 |
- dotenv
|
| 42 |
|
| 43 |
+
1. Clone the Repository
|
| 44 |
+
```bash
|
| 45 |
+
git clone https://huggingface.co/spaces/ABdullah937e/atomcamp-chatbot
|
| 46 |
+
cd atomcamp-chatbot
|
| 47 |
|
| 48 |
+
2. Create Virtual Environment
|
| 49 |
```bash
|
| 50 |
python -m venv venv
|
|
|
|
|
|
|
| 51 |
|
| 52 |
+
3. Activate the Virtual Environment
|
| 53 |
+
3.1 For Linux/macOS:
|
| 54 |
+
```bash
|
| 55 |
+
source venv/bin/activate
|
| 56 |
+
3.2 For Windows:
|
| 57 |
+
```bash
|
| 58 |
+
source venv/Scripts/activate
|
| 59 |
|
| 60 |
+
4. Install Dependencies
|
| 61 |
```bash
|
| 62 |
+
pip install -r requirements.txt
|
| 63 |
|
| 64 |
+
6. Run the App
|
| 65 |
```bash
|
| 66 |
python app.py
|