tebinraouf commited on
Commit
8859554
·
1 Parent(s): 67b94be

Update README with new repository link and environment setup instructions

Browse files
Files changed (1) hide show
  1. README.md +17 -5
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/yourusername/smolagents.git
18
- cd smolagents
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. Install the dependencies:
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
  ```sh
31
  pip install -r requirements.txt
32
  ```
33
 
34
- 4. Run the project:
35
  ```sh
36
- python main.py
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