lazychih114 commited on
Commit
53e64ff
Β·
1 Parent(s): a95603e

update gitignore

Browse files
Files changed (2) hide show
  1. .gitignore +4 -4
  2. README.md +16 -12
.gitignore CHANGED
@@ -1,6 +1,6 @@
1
  .dist
2
  .DS_Store
3
- deep-swarm/data
4
- deep-swarm/tmp
5
- deep-swarm/.env
6
- deep-swarm/utils/__pycache__/
 
1
  .dist
2
  .DS_Store
3
+ owl/data
4
+ owl/tmp
5
+ owl/.env
6
+ owl/utils/__pycache__/
README.md CHANGED
@@ -11,47 +11,51 @@ Our vision is to revolutionize how AI agents collaborate to solve real-world tas
11
 
12
  # πŸ”₯ News
13
 
 
14
 
15
  # πŸ› οΈ Installation
16
 
17
- ## **Clone the Github repository:**
18
 
19
  ```bash
20
- $ git clone xxx
21
  ```
22
 
23
- ## **Set up Environment:**
24
 
25
  ```bash
26
- $ conda create -n owl python=3.11
27
- $ conda activate owl
28
  ```
29
 
30
- ## **Install Dependencies:**
31
 
32
  ```bash
33
- $ pip install -r requirements.txt
34
  ```
35
 
36
- ## **Set API Keys:**
37
 
38
- We use `dotenv` to manage API keys. Please copy and check the `.env.example` file to `.env` and fill in the necessary API keys.
 
 
 
39
 
40
  # πŸš€ Quick Start
41
 
42
  Run the following minimal example:
43
 
44
  ```bash
45
- $ python run.py
46
  ```
47
 
48
  # πŸ§ͺ Experiments
49
 
50
- Additionally, We have provided a script to reproduce the results on GAIA.
51
  You can check the `run_gaia_roleplaying.py` file and run the following command:
52
 
53
  ```bash
54
- $ python run_gaia_roleplaying.py
55
  ```
56
 
57
  # ⏱️ Future Plans
 
11
 
12
  # πŸ”₯ News
13
 
14
+ - **[2025.03.06]**: We open-source the codebase of πŸ¦‰ OWL project.
15
 
16
  # πŸ› οΈ Installation
17
 
18
+ ## **Clone the Github repository**
19
 
20
  ```bash
21
+ git clone xxx
22
  ```
23
 
24
+ ## **Set up Environment**
25
 
26
  ```bash
27
+ conda create -n owl python=3.11
28
+ conda activate owl
29
  ```
30
 
31
+ ## **Install Dependencies**
32
 
33
  ```bash
34
+ pip install -r requirements.txt
35
  ```
36
 
37
+ ## **Setup Environment Variables**
38
 
39
+ In the `.env.example` file, you will find all the necessary API keys along with the websites where you can register for each service. To use these API services, follow these steps:
40
+
41
+ 1. *Copy and Rename*: Duplicate the `.env.example` file and rename the copy to `.env`.
42
+ 2. *Fill in Your Keys*: Open the .env file and insert your API keys in the corresponding fields.
43
 
44
  # πŸš€ Quick Start
45
 
46
  Run the following minimal example:
47
 
48
  ```bash
49
+ python run.py
50
  ```
51
 
52
  # πŸ§ͺ Experiments
53
 
54
+ We provided a script to reproduce the results on GAIA.
55
  You can check the `run_gaia_roleplaying.py` file and run the following command:
56
 
57
  ```bash
58
+ python run_gaia_roleplaying.py
59
  ```
60
 
61
  # ⏱️ Future Plans