Spaces:
Running
Running
Code Debug Environment β Full File Structure
code-debug-env/
βββ openenv.yaml β OpenEnv manifest (required)
βββ inference.py β Baseline agent script (must be in root)
βββ pyproject.toml β Dependencies
βββ README.md β Docs with action/obs spaces
βββ .dockerignore
βββ models.py β Pydantic Action/Observation/State
βββ client.py β EnvClient (for training code)
βββ __init__.py β Exports
βββ server/
βββ __init__.py
βββ app.py β FastAPI server
βββ environment.py β Core logic: reset/step/state
βββ tasks/
β βββ __init__.py
β βββ task_easy.py β 15 buggy code samples
β βββ task_medium.py β 15 buggy code samples
β βββ task_hard.py β 15 buggy code samples
βββ graders/
β βββ __init__.py
β βββ grader_easy.py
β βββ grader_medium.py
β βββ grader_hard.py
βββ requirements.txt
βββ Dockerfile