OpenEnv-compliant RL environment for HuggingFace ecosystem repair under library version drift.
This URL serves the environment over HTTP. It is not a UI — it's the runtime that training notebooks connect to. Open one of the endpoints below, or use the demo Space to try the trained Repair Agent in a browser.
| Method | Path | Purpose |
|---|---|---|
| GET | /health | Health probe |
| POST | /reset | Sample task, return drift-gen observation |
| POST | /step | Apply ForgeAction (breakage or repair) |
| GET | /state | Current internal state |
| GET | /metadata | Env name + version + schema URLs |
| GET | /schema | Action / observation JSON schemas |
| GET | /docs | Interactive Swagger UI |
import asyncio
from openenv.core import GenericEnvClient
async def go():
client = GenericEnvClient(base_url="https://akhiilll-forgeenv.hf.space")
obs = await client.reset()
print(obs.observation["current_phase"], obs.observation["task_id"])
asyncio.run(go())
Tip: if links don't open from inside the embedded Space frame, right-click and choose Open in new tab, or open this URL directly at akhiilll-forgeenv.hf.space.