Skip to content

Commit ae20111

Browse files
committed
Update README
1 parent 7995954 commit ae20111

File tree

6 files changed

+62
-1
lines changed

6 files changed

+62
-1
lines changed

Readme.md renamed to README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ We are still laboriously developing this part, welcome feedback.
210210
First, create a conda environment and activate it:
211211

212212
```bash
213-
conda create -n openmanus-rl python=3.10
213+
conda create -n openmanus-rl python=3.11 -y
214214
conda activate openmanus-rl
215215
```
216216

@@ -229,6 +229,12 @@ pip install -e .
229229
# flash attention 2
230230
pip3 install flash-attn --no-build-isolation
231231
pip install wandb
232+
pip install agentenv
233+
234+
cd openmanus_rl
235+
cd agentgym
236+
cd agentenv
237+
pip install -e .
232238
```
233239

234240
## Quick start
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Metadata-Version: 2.4
2+
Name: agentenv
3+
Version: 0.1.0
4+
Author-email: KYLN24 <[email protected]>
5+
License: MIT
6+
Requires-Python: >=3.11
7+
Description-Content-Type: text/markdown
8+
Requires-Dist: torch>=2.0.0
9+
Requires-Dist: transformers>=4.35.2
10+
Requires-Dist: trl>=0.8.6
11+
Requires-Dist: scipy>=1.11.4
12+
Requires-Dist: accelerate>=0.23.0
13+
Requires-Dist: jsonlines>=4.0.0
14+
Requires-Dist: wandb>=0.16.4
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
pyproject.toml
2+
agentenv/__init__.py
3+
agentenv.egg-info/PKG-INFO
4+
agentenv.egg-info/SOURCES.txt
5+
agentenv.egg-info/dependency_links.txt
6+
agentenv.egg-info/requires.txt
7+
agentenv.egg-info/top_level.txt
8+
agentenv/controller/__init__.py
9+
agentenv/controller/agent.py
10+
agentenv/controller/env.py
11+
agentenv/controller/task.py
12+
agentenv/controller/utils.py
13+
agentenv/envs/__init__.py
14+
agentenv/envs/academia.py
15+
agentenv/envs/alfworld.py
16+
agentenv/envs/babyai.py
17+
agentenv/envs/gaia.py
18+
agentenv/envs/lmrlgym.py
19+
agentenv/envs/movie.py
20+
agentenv/envs/sciworld.py
21+
agentenv/envs/sheet.py
22+
agentenv/envs/sqlgym.py
23+
agentenv/envs/textcraft.py
24+
agentenv/envs/todo.py
25+
agentenv/envs/weather.py
26+
agentenv/envs/webarena.py
27+
agentenv/envs/webshop.py
28+
agentenv/trainer/__init__.py
29+
agentenv/trainer/agentevol_trainer.py
30+
agentenv/trainer/bc_trainer.py
31+
agentenv/trainer/distributed_evaluator.py
32+
agentenv/trainer/utils.py
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
torch>=2.0.0
2+
transformers>=4.35.2
3+
trl>=0.8.6
4+
scipy>=1.11.4
5+
accelerate>=0.23.0
6+
jsonlines>=4.0.0
7+
wandb>=0.16.4
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
agentenv

0 commit comments

Comments
 (0)