Spaces:
Running
Running
File size: 17,914 Bytes
6dd47af |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
Metadata-Version: 2.4
Name: openenv-core
Version: 0.2.0
Summary: A unified framework for reinforcement learning environments
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi>=0.104.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: uvicorn>=0.24.0
Requires-Dist: requests>=2.25.0
Requires-Dist: typer>=0.9.0
Requires-Dist: rich>=13.0.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: huggingface_hub>=0.20.0
Requires-Dist: openai>=2.7.2
Requires-Dist: tomli>=2.3.0
Requires-Dist: tomli-w>=1.2.0
Requires-Dist: websockets>=15.0.1
Requires-Dist: fastmcp>=2.0.0
Requires-Dist: gradio>=4.0.0
Provides-Extra: core
Requires-Dist: fastapi>=0.104.0; extra == "core"
Requires-Dist: pydantic>=2.0.0; extra == "core"
Requires-Dist: uvicorn>=0.24.0; extra == "core"
Requires-Dist: requests>=2.25.0; extra == "core"
Requires-Dist: websockets>=15.0.1; extra == "core"
Provides-Extra: cli
Requires-Dist: typer>=0.9.0; extra == "cli"
Requires-Dist: rich>=13.0.0; extra == "cli"
Requires-Dist: pyyaml>=6.0; extra == "cli"
Requires-Dist: huggingface_hub>=0.20.0; extra == "cli"
Requires-Dist: openai>=2.7.2; extra == "cli"
Requires-Dist: tomli>=2.3.0; extra == "cli"
Requires-Dist: tomli-w>=1.2.0; extra == "cli"
Provides-Extra: all
Requires-Dist: openenv-core[core]; extra == "all"
Requires-Dist: openenv-core[cli]; extra == "all"
Provides-Extra: daytona
Requires-Dist: daytona>=0.136.0; extra == "daytona"
Requires-Dist: pyyaml>=6.0; extra == "daytona"
Dynamic: license-file
# <img width="35" height="35" alt="image" src="https://github.com/user-attachments/assets/2700a971-e5d6-4036-b03f-2f89c9791609" /> OpenEnv: Agentic Execution Environments
An e2e framework for creating, deploying and using isolated execution environments for agentic RL training, built using Gymnasium style simple APIs.
[](https://pypi.org/project/openenv/)
[](https://discord.gg/YsTYBh6PD9)
[](https://colab.research.google.com/github/meta-pytorch/OpenEnv/blob/main/examples/OpenEnv_Tutorial.ipynb)
[](https://meta-pytorch.org/OpenEnv/)
---
**π 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/)
**π₯ GPU Mode Tutorial:** End to end tutorial from [GPU Mode](gpu-mode-tutorial/README.md) blog post.
## Quick Start
Install the OpenEnv core package:
```bash
pip install openenv-core
```
Install an environment client (e.g., Echo):
```bash
pip install git+https://huggingface.co/spaces/openenv/echo_env
```
Then use the environment:
```python
import asyncio
from echo_env import EchoAction, EchoEnv
async def main():
# Connect to a running Space (async context manager)
async with EchoEnv(base_url="https://openenv-echo-env.hf.space") as client:
# Reset the environment
result = await client.reset()
print(result.observation.echoed_message) # "Echo environment ready!"
# Send messages
result = await client.step(EchoAction(message="Hello, World!"))
print(result.observation.echoed_message) # "Hello, World!"
print(result.reward) # 1.3 (based on message length)
asyncio.run(main())
```
**Synchronous usage** is also supported via the `.sync()` wrapper:
```python
from echo_env import EchoAction, EchoEnv
# Use .sync() for synchronous context manager
with EchoEnv(base_url="https://openenv-echo-env.hf.space").sync() as client:
result = client.reset()
result = client.step(EchoAction(message="Hello, World!"))
print(result.observation.echoed_message)
```
For a detailed quick start, check out the [docs page](https://meta-pytorch.org/OpenEnv/quickstart/).
## OpenEnv on partner platforms:
- [Lightning AI Studio](https://lightning.ai/environments?section=featured)
- [TRL example](https://huggingface.co/docs/trl/openenv)
- [Unsloth Google Colab](https://colab.research.google.com/github/unslothai/notebooks/blob/main/nb/OpenEnv_gpt_oss_(20B)_Reinforcement_Learning_2048_Game.ipynb)
- [ART example](https://art.openpipe.ai/integrations/openenv-integration)
- [Oumi example](https://github.com/oumi-ai/oumi/blob/main/notebooks/Oumi%20-%20OpenEnv%20GRPO%20with%20trl.ipynb)
## Overview
OpenEnv provides a standard for interacting with agentic execution environments via simple Gymnasium style APIs - `step()`, `reset()`, `state()`. Users of agentic execution environments can interact with the environment during RL training loops using these simple APIs.
In addition to making it easier for researchers and RL framework writers, we also provide tools for environment creators making it easier for them to create richer environments and make them available over familiar protocols like HTTP and packaged using canonical technologies like docker. Environment creators can use the OpenEnv framework to create environments that are isolated, secure, and easy to deploy and use.
The OpenEnv CLI (`openenv`) provides commands to initialize new environments and deploy them to Hugging Face Spaces.
> β οΈ **Early Development Warning** OpenEnv is currently in an experimental
> stage. You should expect bugs, incomplete features, and APIs that may change
> in future versions. The project welcomes bugfixes, but to make sure things are
> well coordinated you should discuss any significant change before starting the
> work. It's recommended that you signal your intention to contribute in the
> issue tracker, either by filing a new issue or by claiming an existing one.
### RFCs
Below is a list of active and historical RFCs for OpenEnv. RFCs are proposals for major changes or features. Please review and contribute!
- [RFC 001: Baseline API and Interface Specifications](https://github.com/meta-pytorch/OpenEnv/pull/26)
## Architecture
### Component Overview
```
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Client Application β
β ββββββββββββββββββ ββββββββββββββββββββ β
β β EchoEnv β β CodingEnv β β
β β (EnvClient) β β (EnvClient) β β
β ββββββββββ¬ββββββββ ββββββββββ¬ββββββββββ β
βββββββββββββΌββββββββββββββββββββββββββββββββΌββββββββββββββ
β WebSocket β WebSocket
β (reset, step, state) β
βββββββββββββΌββββββββββββββββββββββββββββββββΌββββββββββββββ
β Docker Containers (Isolated) β
β ββββββββββββββββββββββββ ββββββββββββββββββββββββ β
β β FastAPI Server β β FastAPI Server β β
β β EchoEnvironment β β PythonCodeActEnv β β
β β (Environment base) β β (Environment base) β β
β ββββββββββββββββββββββββ ββββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
### Core Components
#### 1. Web Interface
OpenEnv includes a built-in web interface for interactive environment exploration and debugging. The web interface provides:
- **Two-Pane Layout**: HumanAgent interaction on the left, state observation on the right
- **Real-time Updates**: WebSocket-based live updates without page refresh
- **Dynamic Forms**: Automatically generated action forms based on environment Action types
- **Action History**: Complete log of all actions taken and their results
The web interface is **conditionally enabled** based on environment variables:
- **Local Development**: Disabled by default for lightweight development
- **Manual Override**: Enable with `ENABLE_WEB_INTERFACE=true`
To use the web interface:
```python
from openenv.core.env_server import create_web_interface_app
from your_env.models import YourAction, YourObservation
from your_env.server.your_environment import YourEnvironment
env = YourEnvironment()
app = create_web_interface_app(env, YourAction, YourObservation)
```
When enabled, open `http://localhost:8000/web` in your browser to interact with the environment.
#### 2. Environment (Server-Side)
Base class for implementing environment logic:
- **`reset()`**: Initialize a new episode, returns initial `Observation`
- **`step(action)`**: Execute an `Action`, returns resulting `Observation`
- **`state()`**: Access episode metadata (`State` with episode_id, step_count, etc.)
#### 3. EnvClient (Client-Side)
Base class for environment communication:
- **Async by default**: Use `async with` and `await` for all operations
- **Sync wrapper**: Call `.sync()` to get a `SyncEnvClient` for synchronous usage
- Handles WebSocket connections to environment server
- Contains a utility to spin up a docker container locally for the corresponding environment
- Type-safe action/observation parsing
#### 4. Container Providers
Manage container deployment:
- `LocalDockerProvider`: Run containers on local Docker daemon
- `KubernetesProvider`: Deploy to K8s clusters (future)
#### 5. Models
Type-safe data structures:
- `Action`: Base class for environment actions
- `Observation`: Base class for environment observations
- `State`: Episode state tracking
- `StepResult`: Combines observation, reward, done flag
## Project Structure
### For Environment Creators
Use the CLI to quickly scaffold a new environment:
```bash
openenv init my_env
```
This creates the following structure:
```
my_env/
βββ .dockerignore # Docker build exclusions
βββ __init__.py # Export YourAction, YourObservation, YourEnv
βββ models.py # Define Action, Observation, State dataclasses
βββ client.py # Implement YourEnv(EnvClient)
βββ README.md # Document your environment
βββ openenv.yaml # Environment manifest
βββ pyproject.toml # Dependencies and package configuration
βββ outputs/ # Runtime outputs (logs, evals) - gitignored
β βββ logs/
β βββ evals/
βββ server/
βββ your_environment.py # Implement YourEnvironment(Environment)
βββ app.py # Create FastAPI app
βββ requirements.txt # Dependencies for Docker (can be generated)
βββ Dockerfile # Define container image
```
#### Dependency Management
OpenEnv uses `pyproject.toml` as the primary dependency specification:
- **Environment-level `pyproject.toml`**: Each environment defines its own dependencies
- **Root-level `pyproject.toml`**: Contains shared core dependencies (fastapi, pydantic, uvicorn)
- **Server `requirements.txt`**: Can be auto-generated from `pyproject.toml` for Docker builds
**Development Workflow:**
```bash
# Install environment in editable mode
cd my_env
pip install -e .
# Or using uv (faster)
uv pip install -e .
# Run server locally without Docker
uv run server --host 0.0.0.0 --port 8000
```
**Benefits:**
- β
**Client-side extensions**: Modify client classes locally without repo changes
- β
**Better dependency management**: Clear separation between environments
- β
**Flexible workflows**: Use pip, uv, or Docker for different scenarios
- β
**CI/CD ready**: Automated dependency generation and validation
See [`envs/README.md`](envs/README.md) for a complete guide on building environments.
### For Environment Users
To use an environment:
1. Install the client: `pip install git+https://huggingface.co/spaces/openenv/echo-env`
2. Import: `from echo_env import EchoAction, EchoEnv`
3. Use async (recommended) or sync API:
**Async (recommended):**
```python
async with EchoEnv(base_url="...") as client:
result = await client.reset()
result = await client.step(action)
```
**Sync (via `.sync()` wrapper):**
```python
with EchoEnv(base_url="...").sync() as client:
result = client.reset()
result = client.step(action)
```
See example scripts in `examples/` directory.
## CLI Commands
The OpenEnv CLI provides commands to manage environments:
- **`openenv init <env_name>`** - Initialize a new environment from template
- **`openenv push [--repo-id <repo>] [--private]`** - Deploy environment to Hugging Face Spaces
### Quick Start
```bash
# Create a new environment
openenv init my_game_env
# Deploy to Hugging Face (will prompt for login if needed)
cd my_game_env
openenv push
```
For detailed options: `openenv init --help` and `openenv push --help`.
## Design Principles
1. **Separation of Concerns**: Clear client-server boundaries
2. **Type Safety**: Strongly-typed actions, observations, and state
3. **Container Isolation**: Each environment runs in its own container
4. **Simple APIs**: Minimal, intuitive interfaces
## Development
### Installation
```bash
# Clone the repository
git clone https://github.com/meta-pytorch/OpenEnv.git
cd OpenEnv
# Install core package in editable mode
pip install -e .
# Or using uv (faster)
uv pip install -e .
```
### Running Tests
OpenEnv uses a modular dependency structure: the core package is minimal, and each environment has its own dependencies. This means some tests require environment-specific packages.
```bash
# Install pytest (required for running tests)
uv pip install pytest
# Run all tests (skips tests requiring uninstalled dependencies)
PYTHONPATH=src:envs uv run pytest tests/ -v --tb=short
# Run a specific test file
PYTHONPATH=src:envs uv run pytest tests/envs/test_echo_environment.py -v
```
**To run environment-specific tests**, install that environment's dependencies:
```bash
# Example: Install coding_env with dev dependencies (includes smolagents + pytest)
uv pip install -e "envs/coding_env[dev]"
# Then run coding_env tests
PYTHONPATH=src:envs uv run pytest tests/envs/test_python_codeact_rewards.py -v
```
Tests will be automatically skipped if their required dependencies aren't installed.
## Requirements
- Python 3.10+
- Docker Desktop or Docker Engine
- FastAPI >= 0.104.0
- Uvicorn >= 0.24.0
- Requests >= 2.25.0
- Environment-specific dependencies (e.g., smolagents for coding_env)
## Supported RL Tools
The goal of this project is to support a broad set of open and closed tools to help standardize the agentic RL community. If you have a project that supports OpenEnv environments, please put up a PR to add your tool name along with a link to your documentation.
### torchforge
See GRPO BlackJack training example: [`examples/grpo_blackjack/`](examples/grpo_blackjack/)
### TRL
See the [TRL example](https://huggingface.co/docs/trl/openenv) on how to integrate OpenEnv environments with GRPO training.
### Unsloth
See the 2048 game example based on gpt-oss: [Colab notebook](https://colab.research.google.com/github/unslothai/notebooks/blob/main/nb/OpenEnv_gpt_oss_(20B)_Reinforcement_Learning_2048_Game.ipynb)
### SkyRL
See the [SkyRL example](https://skyrl.readthedocs.io/en/latest/examples/openenv.html) on how to train on OpenEnv environments with SkyRL.
### ART
See the [ART example](https://art.openpipe.ai/integrations/openenv-integration) on how OpenEnv environments can be used to train models with ART.
### Oumi
See the [Oumi example](https://github.com/oumi-ai/oumi/blob/main/notebooks/Oumi%20-%20OpenEnv%20GRPO%20with%20trl.ipynb) on how OpenEnv environments can be used to train models with Oumi.
## Example Environments
### Echo Environment
A simple environment that echoes back messages with metadata. Perfect for:
- Testing the HTTP server infrastructure
- Learning the framework basics
- Verifying container deployment
See: [`envs/echo_env/README.md`](envs/echo_env/README.md)
### Coding Environment
Executes arbitrary Python code in a sandboxed environment. Features:
- Safe code execution using smolagents
- Capture stdout, stderr, and exit codes
- Persistent execution context within episodes
- Error handling with detailed messages
See: [`envs/coding_env/README.md`](envs/coding_env/README.md)
## Community Support & Acknowledgments
This is an open and community-centric project. If you would like to add your name here, please put up a pull request and tag @jspisak for review. Ty!!
Supporters include: Meta-PyTorch, Hugging Face, [Scaler AI Labs](https://scalerailabs.com), [Patronus AI](https://patronus.ai), [Surge AI](https://surgehq.ai), [LastMile AI](https://www.lastmileai.dev), Unsloth AI, Reflection AI, vLLM, SkyRL (UC-Berkeley), LightningAI, Axolotl AI, Stanford Scaling Intelligence Lab, Mithril, [OpenMined](https://openmined.org/), [Fleet AI](https://fleetai.com), [Halluminate](https://halluminate.ai/), [Turing](https://www.turing.com/), [Scale AI](https://scale.com/) ..
And we'd also like to acknowledge the team at Farama Foundation as the OpenEnv API was heavily inspired by the work you all have done on Gymnasium. Cheers!
## License
BSD 3-Clause License (see [LICENSE](./LICENSE) file)
|