You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add comprehensive environments table to main README
- Added new "Available Environments" section after Featured Example
- Table includes 10 environments with domain, description, and links
- Organized by purpose: testing, code execution, LLM training, games, dev tools, finance, traffic, safety
- All links verified to point to correct environment READMEs
Co-authored-by: init27 <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,25 @@ An e2e framework for creating, deploying and using isolated execution environmen
10
10
11
11
**🚀 Featured Example:** Train LLMs to play BlackJack using [torchforge](https://github.com/meta-pytorch/torchforge) (PyTorch's agentic RL framework): [`examples/grpo_blackjack/`](examples/grpo_blackjack/)
12
12
13
+
## Available Environments
14
+
15
+
OpenEnv provides a growing collection of environments across different domains for agentic RL research:
|**Coding Env**| Code Execution | Execute Python code in sandboxed environment with smolagents |[`src/envs/coding_env/`](src/envs/coding_env/README.md)|
21
+
|**Chat Env**| LLM Training | Chat-based environment with tokenization and message history for conversation RL |[`src/envs/chat_env/`](src/envs/chat_env/README.md)|
22
+
|**Atari Env**| Classic Games | 100+ Atari 2600 games via Arcade Learning Environment (Pong, Breakout, Space Invaders, etc.) |[`src/envs/atari_env/`](src/envs/atari_env/README.md)|
23
+
|**OpenSpiel Env**| Game Theory | 70+ games from DeepMind's OpenSpiel (Tic-Tac-Toe, Poker, Chess, Catch, 2048, etc.) |[`src/envs/openspiel_env/`](src/envs/openspiel_env/README.md)|
24
+
|**Git Env**| Software Dev | Git repository operations via Gitea for software development tasks |[`src/envs/git_env/`](src/envs/git_env/README.md)|
25
+
|**FinRL Env**| Finance | Stock trading environment with technical indicators and portfolio management |[`src/envs/finrl_env/`](src/envs/finrl_env/README.md)|
26
+
|**SUMO-RL Env**| Traffic Control | Traffic signal optimization using SUMO microscopic traffic simulation |[`src/envs/sumo_rl_env/`](src/envs/sumo_rl_env/README.md)|
27
+
|**TextArena Env**| Word Games | Word games and reasoning tasks (Wordle, GuessTheNumber, etc.) |[`src/envs/textarena_env/`](src/envs/textarena_env/README.md)|
28
+
|**DIPG Safety Env**| AI Safety | Medical domain safety training for high-stakes LLM applications with hallucination detection |[`src/envs/dipg_safety_env/`](src/envs/dipg_safety_env/README.md)|
29
+
30
+
Each environment follows the standard OpenEnv API (`reset()`, `step()`, `state()`) and can be deployed via Docker containers for isolated execution.
31
+
13
32
## OpenEnv on partner platforms:
14
33
15
34
-[Lightning AI Studio](https://lightning.ai/environments?section=featured)
0 commit comments