lazychih114
commited on
Commit
Β·
53e64ff
1
Parent(s):
a95603e
update gitignore
Browse files- .gitignore +4 -4
- README.md +16 -12
.gitignore
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
.dist
|
2 |
.DS_Store
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
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 |
-
|
21 |
```
|
22 |
|
23 |
-
## **Set up Environment
|
24 |
|
25 |
```bash
|
26 |
-
|
27 |
-
|
28 |
```
|
29 |
|
30 |
-
## **Install Dependencies
|
31 |
|
32 |
```bash
|
33 |
-
|
34 |
```
|
35 |
|
36 |
-
## **
|
37 |
|
38 |
-
|
|
|
|
|
|
|
39 |
|
40 |
# π Quick Start
|
41 |
|
42 |
Run the following minimal example:
|
43 |
|
44 |
```bash
|
45 |
-
|
46 |
```
|
47 |
|
48 |
# π§ͺ Experiments
|
49 |
|
50 |
-
|
51 |
You can check the `run_gaia_roleplaying.py` file and run the following command:
|
52 |
|
53 |
```bash
|
54 |
-
|
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
|