# Technical Architecture & Build Flow > Companion to [`README.md`](README.md) (judge-facing) and [`BLOG.md`](BLOG.md) (writeup). This document is the deep technical reference: every tool, every architectural decision, every dataflow diagram. Use it as interview Q&A material โ€” each section answers "what tool, why, and what role does it play". --- ## 1. System overview โ€” one diagram ```mermaid flowchart TB subgraph Dev["๐Ÿ’ป Local Dev (laptop)"] Code[Python source
server/ ยท models.py ยท client.py ยท inference.py] Tests[pytest 28 tests] EnvFile[.env
HF_TOKEN, WANDB_API_KEY] Code --> Tests end subgraph GitHub["๐Ÿ“ฆ GitHub"] Repo["kumarpushpam17-personal/Hackathon"] end subgraph HFSpace["๐Ÿš€ HuggingFace Spaces (CPU runtime)"] Docker["Dockerfile โ†’ uvicorn"] FastAPI["FastAPI + WebSocket
/reset ยท /step ยท /state ยท /docs ยท /health"] EnvServer["ValidatorEnvironment
(OpenEnv Environment subclass)"] Docker --> FastAPI --> EnvServer end subgraph HFJobs["โšก HuggingFace Jobs (L4 GPU)"] Bootstrap["run_in_hf_jobs.py
self-bootstrapping launcher"] TrainScript["training/train.py
(GRPO loop)"] Bootstrap --> TrainScript end subgraph HFHub["๐Ÿค— HuggingFace Hub"] Adapter["pushpam14/api-contract-validator-grpo-7b
(LoRA adapter, 162 MB)"] Artifacts["training_artifacts/
reward_curve.png ยท training_state.json"] Scores["trained_scores.json"] end subgraph WandB["๐Ÿ“Š WandB"] Run["openenv-contract-guardian (public WandB Report)
300 steps ยท immutable ยท timestamped"] end subgraph Inference["๐Ÿ”Œ LLM Providers"] Router["HF Router (Inference Providers)
Qwen2.5-72B / 7B baselines"] end Dev -->|git push| Repo Repo -->|HfApi.upload_folder| HFSpace Bootstrap -->|git clone --depth 1| Repo TrainScript -->|env grader = reward fn| FastAPI TrainScript -->|live metrics| Run TrainScript -->|push adapter| Adapter TrainScript -->|push results| Artifacts inference[inference.py / run_trained_inference.py] -->|/reset, /step| FastAPI inference -->|baseline LLM calls| Router inference -->|trained LLM via Unsloth| Adapter inference -->|writes| Scores Scores -->|input to| Plot[plot.py] Artifacts -->|input to| Plot Plot -->|writes| Plots[results/before_after.png
results/reward_curve.png] Plots -->|git commit| Repo ``` --- ## 2. The tech stack โ€” tool by tool Every dependency, what it does, and why we chose it. ### Core environment (server side) | Tool | Version | Role | Why this and not alternatives | |---|---|---|---| | **Python** | 3.10+ | Language | Required by `openenv-core`; broad library support | | **`openenv-core[core]`** | โ‰ฅ 0.2.2 | RL environment framework | Hackathon mandate; provides `Environment` base class, `EnvClient`, FastAPI scaffolding, WebSocket session management | | **FastAPI** | latest | HTTP/WebSocket server | Auto-generates OpenAPI schema; required by openenv-core's `create_app` | | **Pydantic v2** | โ‰ฅ 2 | Data models for `Action`, `Observation`, `State` | Required by openenv; provides JSON-schema validation for /step and /reset request bodies | | **Uvicorn** | โ‰ฅ 0.24 | ASGI runtime | Standard for FastAPI; runs in our Dockerfile `CMD` | | **Python `logging`** | stdlib | Structured episode logs (JSON to stdout + `logs/episodes.jsonl`) | Built-in, zero dependency; lets `docker logs` show every reset/step | ### Agent / inference side | Tool | Version | Role | Why this and not alternatives | |---|---|---|---| | **`openai`** (HF router compatible) | โ‰ฅ 1.0 | LLM client for baselines (Qwen-72B / 7B via HF Inference Providers) | Same API for hosted Qwen models without local GPU; `inference.py` uses `client.chat.completions.create` | | **`python-dotenv`** | โ‰ฅ 1.0 | Load `HF_TOKEN`, `WANDB_API_KEY` from gitignored `.env` | Keeps secrets out of git; auto-loaded at script start | | **`huggingface_hub`** | โ‰ฅ 1.0 | File upload (Space deploy, adapter push, artifact push), file download (pull plots back from adapter repo) | Official HF SDK; used by `HfApi.upload_folder`, `upload_file`, `hf_hub_download` | ### Training pipeline | Tool | Version | Role | Why this and not alternatives | |---|---|---|---| | **`trl`** | โ‰ฅ 0.13 | `GRPOTrainer` + `GRPOConfig` for the GRPO algorithm | Hackathon mandate; HF's official RL trainer with first-class GRPO support | | **`unsloth`** | latest | 4-bit model loading + 2ร— faster LoRA fine-tuning + memory offload | Lets us fit Qwen-7B on a 24 GB L4; 4-bit + LoRA r=16 = trainable params drop from 7.6 B to 40 M | | **`torch`** | โ‰ฅ 2.0 | Backend for unsloth + trl | Mandatory dep for both | | **`bitsandbytes`** | latest | Underlying 4-bit quantization | Required by Unsloth for `load_in_4bit=True` | | **`xformers`** | latest | Memory-efficient attention | Auto-installed by Unsloth; falls back to vanilla on T4 | | **`peft`** | (transitive) | LoRA adapter creation/serialization | Used by Unsloth's `get_peft_model`; produces the 162 MB `adapter_model.safetensors` | | **`datasets`** | latest | `Dataset.from_list` for the GRPO prompt dataset | Required by `GRPOTrainer.train_dataset` | | **`wandb`** | โ‰ฅ 0.16 | Experimental tracking โ€” every step's reward, loss, KL, gradient norm | Public dashboard for judges; immutable history; required for the "evidence of training" criterion | ### Plotting & analysis | Tool | Version | Role | |---|---|---| | **`matplotlib`** | โ‰ฅ 3.10 | `reward_curve.png` (training metrics) + `before_after.png` (3-bar baseline-vs-trained) | | **`numpy`** | โ‰ฅ 1.24 | Bar-chart x-axis math in `plot.py` | ### Hosting & infrastructure | Service | Role | Why | |---|---|---| | **HuggingFace Spaces** | Hosts the live OpenEnv server (CPU basic, free tier) | Required by hackathon; one-click deploy via `HfApi.upload_folder`; auto-builds Docker image; gives a public `*.hf.space` endpoint | | **HuggingFace Hub** | Hosts trained adapter + training artifacts (reward_curve.png, training_state.json, trained_scores.json) | Free for public models; `HfApi.upload_file` from inside the training job | | **HuggingFace Jobs** | On-demand cloud GPU runtime (used L4 24 GB at $0.80/hr) | Faster + more reliable than Colab Free; doesn't time out; supports inline PEP-723 dependency declarations via `hf jobs uv run` | | **HF Inference Providers (router)** | Serverless inference for Qwen2.5-72B / 7B baselines | Free tier covers ~9 tasks of ~10 calls each; no GPU needed for baselines | | **WandB** | Public, immutable experiment tracking | Free; satisfies "experimental tracking turned on" requirement. Public report (share-via-link): see [WandB Report URL in README](README.md#links) | | **Docker** | Containerization for the OpenEnv server | Required by HF Spaces (`sdk: docker` in README frontmatter); reproducible build | | **GitHub** | Source-of-truth + the URL the HF Job clones from | Public, free; supports raw-content URLs for plot embeds | | **`uv` (PyPI installer used in HF Jobs)** | Fast Python dep installer (~500 ms for 177 packages) | Default tool for `hf jobs uv run`; PEP-723 inline deps make our launcher self-contained | ### Local development | Tool | Role | |---|---| | **pytest** | 28-test suite across all 9 tasks (Phase 1 + Phase 2 + Phase 3 + cascade) | | **`openenv` CLI** | `openenv validate` โ€” confirms our env meets the OpenEnv spec | | **`hf` CLI** | `hf jobs uv run`, `hf jobs logs --follow`, `hf jobs inspect`, `hf auth login` | | **`huggingface-cli` CLI** | `huggingface-cli whoami`, alternative login | | **Git** | Version control | --- ## 3. Build flow โ€” step by step The order in which the project was actually constructed. ```mermaid flowchart LR A[1. Pydantic models
Action / Obs / State] --> B[2. spec_generator.py
Phase 1 task scenarios] B --> C[3. environment.py
reset / step / state] C --> D[4. rewards.py
composable Rubric] D --> E[5. app.py
FastAPI wiring] E --> F[6. client.py
EnvClient subclass] F --> G[7. inference.py
baseline runner] G --> H[8. tests/
28 tests] H --> I[9. Phase 2/3
service_graph + impact_tracer + fix_validator] I --> J[10. Dockerfile
containerize] J --> K[11. HF Space deploy
upload_folder] K --> L[12. baseline runner
72B + 7B at temp 0.7] L --> M[13. training/train.py
GRPO + LoRA + Unsloth] M --> N[14. run_in_hf_jobs.py
self-bootstrapping launcher] N --> O[15. Submit HF Job
L4, 300 steps] O --> P[16. Push adapter +
plots to HF Hub] P --> Q[17. run_trained_inference.py
per-task scores] Q --> R[18. plot.py
3-way before_after.png] R --> S[19. README + BLOG
+ STORY + this doc] S --> T[20. Sync everything
to HF Space + GitHub] ``` --- ## 4. Runtime architecture โ€” what happens at /reset and /step ### Reset sequence (one episode start) ```mermaid sequenceDiagram participant Client as Agent / Judge curl participant FastAPI participant Env as ValidatorEnvironment participant Gen as spec_generator.py / service_graph.py Client->>FastAPI: POST /reset {task_name, seed} FastAPI->>Env: env.reset(task_name, seed, episode_id) alt Phase 1 task Env->>Gen: generate_scenario_for_task(task, seed) Gen-->>Env: TaskScenario (api_spec + payload + planted violations) else Phase 2/3 task Env->>Gen: get_cascade_scenario(seed) Gen-->>Env: CascadeScenario (producer specs + consumers + ground truth) end Env->>Env: log episode_start (JSON to stdout) Env-->>FastAPI: ValidatorObservation FastAPI-->>Client: 200 OK + JSON observation ``` ### Step sequence (one agent action) ```mermaid sequenceDiagram participant Client as Agent participant FastAPI participant Env as ValidatorEnvironment participant Grader as rewards.py + impact_tracer + fix_validator Client->>FastAPI: POST /step {action: ValidatorAction} FastAPI->>Env: env.step(action) Env->>Env: dispatch by action.action_type alt action_type=report_violation Env->>Grader: compute_step_reward (Phase 1 rubric) else action_type=trace_impact Env->>Grader: trace_impact() + phase2_trace_rubric else action_type=propose_fix / validate_fix Env->>Grader: validate_fix() + phase3_fix_rubric end Grader-->>Env: RewardBreakdown / Rubric Env->>Env: log step (JSON), update state, check done Env-->>FastAPI: ValidatorObservation (reward, done, feedback) FastAPI-->>Client: 200 OK ``` ### What lives where in the server ``` api_contract_validator/server/ โ”œโ”€โ”€ app.py FastAPI wiring (create_app + landing page + OpenAPI patcher) โ”œโ”€โ”€ environment.py reset/step/state dispatch by phase โ”œโ”€โ”€ logging_setup.py JSON logger config โ”œโ”€โ”€ spec_generator.py Phase 1 โ€” 6 detection task generators with planted violations โ”œโ”€โ”€ service_graph.py Phase 2/3 โ€” 2 cascade scenarios with producer + consumers โ”œโ”€โ”€ impact_tracer.py Phase 2 โ€” precision/recall/F1 grader โ”œโ”€โ”€ fix_validator.py Phase 3 โ€” 5-strategy backward-compat verification โ””โ”€โ”€ rewards.py Composable Rubric API + 14 independent reward signals ``` --- ## 5. Training pipeline architecture โ€” GRPO with env-as-grader ```mermaid flowchart LR subgraph Setup["Setup (once per job)"] A1[hf jobs uv run] --> A2[uv resolves
177 packages] A2 --> A3[git clone repo
via run_in_hf_jobs.py] A3 --> A4[load Qwen-7B-4bit
via Unsloth] A4 --> A5[wrap with LoRA r=16
40 M trainable params] A5 --> A6[build dataset
50 prompts ร— 6 tasks] end subgraph Loop["GRPO loop (300 steps)"] B1[Sample batch of prompts] --> B2[Generate 4 completions per prompt
via model.generate] B2 --> B3[Parse JSON action
via parse_llm_response] B3 --> B4[Open fresh WebSocket
per reward_fn call] B4 --> B5[reset + step on HF Space env
env grader returns reward] B5 --> B6[GRPO ranks completions
by reward, updates LoRA] B6 --> B7[Log metrics to WandB
reward, loss, KL, grad_norm] B7 --> B1 end subgraph Output["After 300 steps"] C1[matplotlib
plot reward_curve.png] C2[push adapter
HfApi.upload_folder] C3[push reward_curve +
training_state.json
HfApi.upload_file] C4[os._exit 0
clean exit] C1 --> C2 --> C3 --> C4 end Setup --> Loop --> Output ``` ### Why per-call WebSocket (not persistent) HF Spaces drops idle WebSockets after ~30s. GRPO's pause between batches (model gen + backprop) is longer than that. Sharing one persistent WebSocket made every batch after the first fail with `1011 keepalive timeout`. The fix in `train.py` โ€” open a fresh `ValidatorEnv` inside each `reward_fn` invocation, close at end. ~50 ms overhead per batch, eliminates the failure mode. ### Why fp16 (not bf16) L4 supports both, but Unsloth's gradient-checkpointed fast-LoRA kernel mixes fp16 (Half) and fp32 (Float) under bf16 autocast โ†’ `addmm_` dtype mismatch โ†’ crash. We forced fp16 globally; works on both T4 and L4 cleanly. ### Why GRPO (not SFT or DPO) We have a *verifiable environment grader*, not labeled (prompt, ideal_action) pairs. SFT would require us to manually label correct answers โ€” throwing away the env's role as the source of truth. GRPO ranks multiple completions per prompt and pushes toward the higher-reward ones. That's exactly what our 14-component rubric provides. --- ## 6. Deployment architecture ```mermaid flowchart TB subgraph Local["Laptop"] Source[Python source] Tests[pytest] Source --> Tests Tests -->|โœ… 28/28| Push end Push[git push] --> GitHub[(GitHub repo)] subgraph HFSpaceCI["HF Spaces (build pipeline)"] SpaceUpload[HfApi.upload_folder] DockerBuild[HF builds Dockerfile] DockerRun[Container starts:
uvicorn server.app:app --port 7860] SpaceUpload --> DockerBuild --> DockerRun end GitHub -.->|judges browse| GitHub Source -->|HfApi.upload_folder
from laptop| SpaceUpload DockerRun --> Live["Live env at
pushpam14-api-contract-validator.hf.space"] subgraph HFJob["HF Jobs (training, ephemeral)"] JobStart[hf jobs uv run --flavor l4x1] JobClone[run_in_hf_jobs.py:
git clone repo from GitHub] JobTrain[training/train.py
connects to Live env
via ValidatorEnv WebSocket] JobStart --> JobClone --> JobTrain end JobTrain -->|/reset, /step| Live JobTrain -->|push adapter| Hub[HF Hub adapter repo] JobTrain -->|metrics| WandB[(WandB)] ``` ### Why HF Jobs over Colab | Factor | Colab Free | HF Jobs | |---|---|---| | Disconnects mid-run | After 3 hours / idle | No | | GPU options | T4 only (16 GB) | t4 / l4 / a10g / a100 / h100 | | Reproducibility for judges | Manual upload + auth | One CLI command, fully scripted | | Cost on $30 hackathon credit | Free but unreliable | ~$2.40 for our main run | | WandB / HF auth | Manual paste | `-s WANDB_API_KEY -s HF_TOKEN` flags | For a 2-hour 7B+LoRA run, HF Jobs is strictly better. Colab is in our docs as a fallback. --- ## 7. Per-phase data flow diagrams ### Phase 1 โ€” Detection (find_type_mismatches example) ```mermaid sequenceDiagram participant Agent as LLM participant Env participant Specgen as spec_generator participant Rubric as rewards.py Agent->>Env: reset(find_type_mismatches, seed=42) Env->>Specgen: generate_easy_scenario(seed=42) Specgen->>Specgen: sample 4 from pool of 12 violations Specgen-->>Env: api_spec + payload + 4 PlantedViolations Env-->>Agent: obs (api_spec + payload visible, violations hidden) loop Up to 10 steps Agent->>Env: step({field_path, violation_type}) Env->>Env: _find_matching_violation (path AND type) alt full match (path + type) Env->>Rubric: compute_step_reward(is_correct=True) Rubric-->>Env: +1.0 else proximity (path only) Env->>Rubric: compute_step_reward(is_path_match=True) Rubric-->>Env: +0.3 else duplicate Rubric-->>Env: -0.1 else false positive Rubric-->>Env: -0.3 end Env-->>Agent: obs (reward + violations_remaining update) end Agent->>Env: step({field_path: "DONE"}) Env-->>Agent: obs (done=True, score = correct/total) ``` ### Phase 2 โ€” Impact tracing (trace_downstream_blast_radius) ```mermaid sequenceDiagram participant Agent as LLM participant Env participant Sg as service_graph participant Tr as impact_tracer participant Ru as rewards.py Agent->>Env: reset(trace_downstream_blast_radius, seed=1) Env->>Sg: get_cascade_scenario(seed=1) Sg-->>Env: CascadeScenario (UserService email rename + 4 consumers) Note right of Env: ground_truth_affected hidden โ€” agent only sees consumer declarations Env-->>Agent: obs (public_observation, no ground truth) Agent->>Env: step(trace_impact, [Orders, Billing, Notifications]) Env->>Tr: trace_impact(scenario, predicted) Tr->>Tr: compute hits / missed / false_flags / unknown Tr-->>Env: ImpactTraceResult Env->>Ru: phase2_trace_rubric(result) Ru-->>Env: Rubric (per-consumer signals) Env-->>Agent: obs (reward = sum(rubric), done if perfect or steps exhausted) ``` ### Phase 3 โ€” Fix proposal (propose_backward_compat_fix) ```mermaid sequenceDiagram participant Agent as LLM participant Env participant Sg as service_graph participant Fv as fix_validator participant Ru as rewards.py Agent->>Env: reset(propose_backward_compat_fix, seed=1) Env->>Sg: get_cascade_scenario(seed=1) Sg-->>Env: CascadeScenario + acceptable_fix_strategies Env-->>Agent: obs (detected_violation + consumer_specs visible) Agent->>Env: step(propose_fix, field_alias, {aliases: {email: email_address}}) Env->>Fv: validate_fix(scenario, strategy, patch) loop per consumer Fv->>Fv: _STRATEGY_CHECKERS[strategy](consumer) end Fv-->>Env: FixValidationResult (passing / failing / reasons) Env->>Ru: phase3_fix_rubric(result) Ru-->>Env: Rubric (+2.0 if all_consumers_pass else -1.0 per failure) Env-->>Agent: obs (reward, fix_validation_results, done if accepted) ``` --- ## 8. Why each tool? (decision log for interview Q&A) ### Q: "Why OpenEnv and not roll your own RL framework?" OpenEnv is the hackathon's mandate โ€” but beyond compliance, it provides: - A standard `Environment` base class with `reset` / `step` / `state` contract - `EnvClient` with WebSocket session management out of the box - FastAPI scaffolding via `create_app` so we get `/reset`, `/step`, `/state`, `/health`, `/docs`, `/ws` endpoints free - Pydantic-typed Action/Observation/State models that auto-generate OpenAPI schema - Compatibility with the hackathon's expected eval harness Saved ~2 weeks of plumbing. ### Q: "Why Unsloth?" Three reasons: 1. **2ร— faster LoRA fine-tuning** vs vanilla transformers โ€” critical for our 2-hour onsite training window 2. **4-bit quantization** drops Qwen-7B from ~14 GB to ~5 GB VRAM, so it fits on a 24 GB L4 with room for activations and KV cache 3. **Smart gradient offloading** โ€” Unsloth swaps cold gradients to CPU, lets us train without OOM Cost: an unsloth-specific bug (bf16 + LoRA dtype mismatch) cost us one re-run iteration. Documented in [`training/train.py`](training/train.py) comments. ### Q: "Why TRL's GRPOTrainer specifically and not PPO?" GRPO (Group Relative Policy Optimization) compares N completions per prompt and ranks them by reward โ€” no value function needed. For our setup that's a perfect fit: - We sample `num_generations=4` per prompt, env grades each, GRPO promotes the highest - No reward-model bootstrap (the env IS the reward) - Simpler than PPO; trains faster on small LoRA PPO would also work but adds a value head we don't need. ### Q: "Why GRPO instead of SFT on a labeled dataset?" We don't have labeled (prompt, ideal_action) pairs. We have an *environment* with a verifiable grader. SFT would require us to hand-label correct violations / fixes โ€” throwing away the env's role as the source of truth. GRPO uses the env's grader directly as the reward function, which: - Lets the agent explore action variants - Is grounded in actual env behavior, not human-labeled "right answers" - Matches the hackathon's "training script connects to your environment" requirement ### Q: "Why composable rubric instead of one monolithic reward?" `final_docs/help_guide.md` ยง7 explicitly recommends composable rubrics. Practical reasons: - **Hard to game**: an agent that maximizes one signal (e.g. "spam reports") burns another (the spam penalty) - **Per-component logging**: we can see which signal drove training; if reward goes up but `consumer_correct` stays flat we'd know the model is gaming - **14 signals across 3 phases**: rich gradient even when partial progress is made ### Q: "Why HuggingFace Spaces for hosting?" Hackathon mandate. Beyond that: - Free CPU runtime for our env (we don't need GPU at serving time) - Auto-builds Docker on push - Public URL judges can hit directly: `pushpam14-api-contract-validator.hf.space` - Repo browser at `huggingface.co/spaces/pushpam14/api-contract-validator` for file inspection ### Q: "Why HF Jobs over Colab?" Reliability. Colab disconnects mid-run; HF Jobs doesn't. Plus HF Jobs supports L4 / A10G / A100 / H100 (Colab Free is T4-only). For a 7B model + LoRA, L4 is the sweet spot โ€” Qwen-7B with 4-bit quantization fits with room to spare, ~$2.40 for the full 300-step run. ### Q: "Why log to WandB AND keep training_state.json AND keep training_full_log.txt?" Three tiers of evidence in case any one fails or is questioned: - **WandB** (canonical, immutable, public) โ€” cannot be edited - **training_state.json** (git-committed, parseable) โ€” proves the data WandB has - **training_full_log.txt** (git-committed, raw) โ€” proves what the job actually printed Different judges will trust different artifacts. We have all three. ### Q: "Why a self-bootstrapping launcher (run_in_hf_jobs.py) instead of submitting train.py directly?" `hf jobs uv run` uploads exactly one file. Our `train.py` imports from sibling modules (`inference.py`, `client.py`, `models.py`, `server/*`). A single-file submission would `ImportError` on first import. The launcher: 1. Declares all heavy training deps via PEP-723 inline metadata so `uv` resolves them in one shot 2. `git clone --depth 1` from GitHub 3. Adds the package to `sys.path` 4. Calls `training.train.main()` 5 KB of glue, eliminates an entire class of "missing module" failures. --- ## 9. Engineering decisions worth highlighting These are the non-obvious calls we made that paid off (or that we'd defend in code review). ### Three-bar before/after comparison instead of two-bar The "before" used to be Qwen-72B (10ร— larger than the trained model โ€” confounded by size). We re-baselined with untrained Qwen-7B (same base as the trained adapter). The 7B-vs-7B+LoRA comparison **isolates the GRPO training effect from model-size effects**. The headline `0.01 โ†’ 0.67` only became defensible after this re-baselining. ### Rewards table at the start, training at the end We froze the reward function design before training. If we had iterated on rewards mid-training, the WandB curve wouldn't be apples-to-apples across runs. ### `os._exit(0)` after `[INFO] done.` The `websockets` library emits a non-zero exit code from its `__del__` finalizer when the event loop has been closed. HF Jobs sees that and marks the run ERROR. Calling `os._exit(0)` after our last log line bypasses interpreter shutdown finalizers entirely. The training itself was unchanged; only the badge in HF Jobs UI was misleading. ### `TEMPERATURE=0.7` for sampling-fair comparison Original `inference.py` used `temperature=0.2` (deterministic). The trained model would find 2-3 violations confidently, then loop on duplicates. We made TEMPERATURE env-configurable and re-ran all baselines + trained inference at 0.7. Same temperature for all three columns of the comparison; any difference is now purely model + training, not sampling. ### Score recomputation from rewards (worked around `env.state()` bug) `SUPPORTS_CONCURRENT_SESSIONS=True` means each request gets its own env instance; `await env.state()` after a sequence of `step()` calls hits a fresh instance and returns default `score=0.01`. We computed final scores from the per-step rewards trajectory (`details[*].rewards`) which is the ground truth. --- ## 10. Reproducibility checklist Anyone can verify our claims with these commands. ### Verify the Space is live ```bash curl https://pushpam14-api-contract-validator.hf.space/health # expected: {"status":"healthy"} curl -X POST https://pushpam14-api-contract-validator.hf.space/reset \ -H "Content-Type: application/json" \ -d '{"task_name":"trace_downstream_blast_radius","seed":1}' # expected: 200 OK with phase=tracing observation ``` ### Verify the trained adapter exists ```bash curl -sI https://huggingface.co/pushpam14/api-contract-validator-grpo-7b/resolve/main/adapter_model.safetensors | grep -i content-length # expected: content-length: 162175520 ``` ### Verify the WandB report is real Open https://wandb.ai/pushpamsubscriptions-inn/openenv-contract-guardian/reports/Enterprise-Contract-Guardian-GRPO-training-Qwen-7B-LoRA-300-steps---VmlldzoxNjY3MTAxMA?accessToken=3dhumexjta1umyk04rq6dx47iww4t25utt3j0x7063b7pvzzibp8jah29grhlwpb โ€” should show 300-step reward / loss / grad_norm / kl curves with timestamps from 2026-04-25 18:57. ### Re-run inference ```bash git clone https://github.com/kumarpushpam17-personal/Hackathon cd Hackathon/api_contract_validator cp .env.example .env # Edit .env with your own HF_TOKEN pip install -e . docker build -t api-contract-validator . docker run -d -p 7860:7860 --name eg-env api-contract-validator python inference.py # Writes baseline scores at default Qwen-72B; or set MODEL_NAME=Qwen/Qwen2.5-7B-Instruct ``` ### Re-run training ```bash hf jobs uv run \ --flavor l4x1 \ -s HF_TOKEN -s WANDB_API_KEY \ -e BASE_MODEL=unsloth/Qwen2.5-7B-Instruct-bnb-4bit \ -e ENV_URL=https://pushpam14-api-contract-validator.hf.space \ -e MAX_STEPS=300 \ -e PUSH_TO_HUB=YOUR_USERNAME/your-adapter-name \ api_contract_validator/training/run_in_hf_jobs.py ``` ### Run tests ```bash PYTHONPATH=api_contract_validator python3 -m pytest api_contract_validator/tests/ -v # expected: 28 passed ``` ### Validate the env contract ```bash cd api_contract_validator openenv validate # expected: [OK] api_contract_validator: Ready for multi-mode deployment ``` --- ## See also - [`README.md`](README.md) โ€” judge-facing overview, quick links, results table - [`BLOG.md`](BLOG.md) โ€” public mini-blog writeup - [`ENTERPRISE_CONTRACT_GUARDIAN_STORY.md`](ENTERPRISE_CONTRACT_GUARDIAN_STORY.md) โ€” product narrative, two worked incident examples, episode lifecycle - [`results/TRAINING_RUN_PROOF.md`](results/TRAINING_RUN_PROOF.md) โ€” proof that the training run actually succeeded (the HF Jobs UI ERROR badge is a websockets-shutdown red herring) - [`training/README.md`](training/README.md) โ€” three ways to run the training pipeline (HF Jobs / Colab / local)