Add BaseHTTPClient to talk to Envs via JSON over RPC.#4
Merged
Conversation
rycerzes
pushed a commit
to rycerzes/OpenEnv
that referenced
this pull request
Nov 19, 2025
Add BaseHTTPClient to talk to Envs via JSON over RPC.
rycerzes
pushed a commit
to rycerzes/OpenEnv
that referenced
this pull request
Nov 19, 2025
3 tasks
EchoRaven
pushed a commit
to BillChan226/openenv-gen
that referenced
this pull request
Jan 5, 2026
feat: webarena torchforge grpo integration
This was referenced Jan 13, 2026
lilyzhng
added a commit
to lilyzhng/OpenEnv
that referenced
this pull request
Mar 8, 2026
Old: every no-progress turn counted as wasted (25/29 in Run 10) New: each no-progress streak gets 2-turn grace period (exploration), only turns beyond grace count as wasted (stuck in a loop) This aligns with principle huggingface#4: agent MUST explore (ls, cat, grep) to discover context. Exploration turns shouldn't be penalized. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
akashkathole7
added a commit
to akashkathole7/OpenEnv
that referenced
this pull request
Apr 20, 2026
Per Section F done-gate huggingface#4: measured the heuristic scaffold's composite reward on hero seeds 9500/9501/9502 (Qwen2.5-3B-Instruct loaded on Colab T4; heuristic eval identical to the dry-run's evaluate_heuristic path). Measured totals: 9500 (planned tier_a): 0.3287 R3=0.01 9501 (planned tier_b): 0.4623 R3=0.99 9502 (planned tier_c): 0.1892 R3=0.01 Measured ordering 9501 > 9500 > 9502 does NOT match the planned easy > medium > hard (9500 > 9501 > 9502). The 9500↔9501 swap fails the monotonicity gate, so labels stay tier_a / tier_b / tier_c. Mechanism: 9500 has only 2 mismatches but the heuristic over-claims on one of them and trips Rule 36(4) (R3=0.01). 9501's 5 mismatches spread across more suppliers; no single supplier's claim exceeds 2B cap so R3=0.99 dominates. A real trained policy may reverse this — re-measure after real Colab training before the pitch demo. Artifact committed: data/hero_baseline.json. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced May 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The change is primarily adding HTTP base client to talk over JSON RPC to a container. The container bootstrap code is not added yet. It will be in the next PR.