Fix template client missing StateT generic parameter#332
Open
zafstojano wants to merge 1 commit intometa-pytorch:mainfrom
Open
Fix template client missing StateT generic parameter#332zafstojano wants to merge 1 commit intometa-pytorch:mainfrom
zafstojano wants to merge 1 commit intometa-pytorch:mainfrom
Conversation
The CLI template was generating clients with only 2 generic parameters (ActT, ObsT) instead of the required 3 (ActT, ObsT, StateT), violating the EnvClient invariant. Added State as the third generic and a regression test to prevent future breakage. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
Greptile OverviewGreptile SummaryThis PR fixes a template bug where the CLI's Changes:
Impact: Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant CLI as openenv init
participant Template as client.py template
participant Generated as Generated client.py
User->>CLI: openenv init test_env
CLI->>Template: Read template with placeholders
Note over Template: EnvClient[__ENV_CLASS_NAME__Action,<br/>__ENV_CLASS_NAME__Observation, State]
CLI->>CLI: Replace __ENV_CLASS_NAME__<br/>with TestAction, TestObservation
CLI->>Generated: Write client.py
Note over Generated: EnvClient[TestAction,<br/>TestObservation, State]
Generated-->>User: ✓ Correct 3-parameter signature
|
Author
|
tagging @burtenshaw @Darktex for visibility :) |
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.
Summary
EnvClient[ActT, ObsT, State]matching the invariantTest plan
openenv init test_envgenerates correct signature🤖 Generated with Claude Code