Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ jobs:
dockerfile: src/envs/textarena_env/server/Dockerfile
- name: browsergym-env
dockerfile: src/envs/browsergym_env/server/Dockerfile
- name: snake-env
dockerfile: src/envs/snake_env/server/Dockerfile

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ Executes arbitrary Python code in a sandboxed environment. Features:

See: [`src/envs/coding_env/README.md`](src/envs/coding_env/README.md)

## Community Support & Acknowledgments
## 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, [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/) ..
Expand Down
19 changes: 19 additions & 0 deletions docs/environments.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,25 @@ The OpenEnv community has built a catalog of ready-to-run environments that cove
</div>
</div>

<div class="environment-card">
<div class="environment-card__body">
<span class="environment-card__tag">Snake</span>
<p class="environment-card__description">
Classic snake game environment for RL research with configurable grids, partial observability, and customizable rewards.
</p>
</div>
<div class="environment-card__links">
<a class="environment-card__icon" href="/OpenEnv/environments/snake/" aria-label="Snake docs">
<svg viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<path d="M6 3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V9l-6-6H6zm8 1.5L18.5 9H14V4.5z" fill="currentColor"/>
</svg>
</a>
<a class="environment-card__icon environment-card__icon--hf" href="https://huggingface.co/spaces/Crashbandicoote2/snake_env" target="_blank" rel="noreferrer noopener" aria-label="Snake on Hugging Face">
<img src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg" alt="" aria-hidden="true" />
</a>
</div>
</div>

</div>

> Want to publish your own environment? Head over to the [Build Your Own Environment](environment-builder.md) guide for a step-by-step walkthrough.
2 changes: 2 additions & 0 deletions docs/environments/snake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--8<-- "../../src/envs/snake_env/README.md"

Loading