ForgeEnv 🔧 running

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.

Endpoints

MethodPathPurpose
GET /healthHealth probe
POST/resetSample task, return drift-gen observation
POST/stepApply ForgeAction (breakage or repair)
GET /stateCurrent internal state
GET /metadataEnv name + version + schema URLs
GET /schemaAction / observation JSON schemas
GET /docsInteractive Swagger UI

Quick start (Python)

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())

Project links

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.