Spaces:
Running
Running
Commit
·
8859554
1
Parent(s):
67b94be
Update README with new repository link and environment setup instructions
Browse files
README.md
CHANGED
@@ -14,8 +14,8 @@ This project is designed to...
|
|
14 |
1. Clone the repository:
|
15 |
|
16 |
```sh
|
17 |
-
git clone https://github.com/
|
18 |
-
cd
|
19 |
```
|
20 |
|
21 |
2. Create a virtual environment:
|
@@ -25,15 +25,27 @@ This project is designed to...
|
|
25 |
source venv/bin/activate # On Windows use `venv\Scripts\activate`
|
26 |
```
|
27 |
|
28 |
-
3.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
```sh
|
31 |
pip install -r requirements.txt
|
32 |
```
|
33 |
|
34 |
-
|
35 |
```sh
|
36 |
-
python
|
37 |
```
|
38 |
|
39 |
## Contributing
|
|
|
14 |
1. Clone the repository:
|
15 |
|
16 |
```sh
|
17 |
+
git clone https://github.com/tebinraouf/agenticai_examples.git
|
18 |
+
cd agenticai_examples
|
19 |
```
|
20 |
|
21 |
2. Create a virtual environment:
|
|
|
25 |
source venv/bin/activate # On Windows use `venv\Scripts\activate`
|
26 |
```
|
27 |
|
28 |
+
3. Create a `.env` file in the root directory of the project and add your environment variables:
|
29 |
+
|
30 |
+
```sh
|
31 |
+
touch .env
|
32 |
+
```
|
33 |
+
|
34 |
+
Example `.env` file:
|
35 |
+
|
36 |
+
```
|
37 |
+
HF_TOKEN=your_api_key_here
|
38 |
+
```
|
39 |
+
|
40 |
+
4. Install the dependencies:
|
41 |
|
42 |
```sh
|
43 |
pip install -r requirements.txt
|
44 |
```
|
45 |
|
46 |
+
5. Run the project:
|
47 |
```sh
|
48 |
+
python app.py
|
49 |
```
|
50 |
|
51 |
## Contributing
|