-
Notifications
You must be signed in to change notification settings - Fork 48
Hard evals #3835
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hard evals #3835
Conversation
| # Set starting energy to 30 and no regen | ||
| agent = cfg.game.agent | ||
| agent.initial_inventory = dict(agent.initial_inventory) | ||
| agent.initial_inventory["energy"] = 60 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment-code mismatch on energy configuration. The comment on line 594 states "Set starting energy to 30" but line 597 actually sets initial_inventory["energy"] = 60. This inconsistency could lead to incorrect difficulty tuning.
# Either update the comment:
# Set starting energy to 60 and no regen
# Or update the code:
agent.initial_inventory["energy"] = 30| # Set starting energy to 30 and no regen | |
| agent = cfg.game.agent | |
| agent.initial_inventory = dict(agent.initial_inventory) | |
| agent.initial_inventory["energy"] = 60 | |
| # Set starting energy to 60 and no regen | |
| agent = cfg.game.agent | |
| agent.initial_inventory = dict(agent.initial_inventory) | |
| agent.initial_inventory["energy"] = 60 |
Spotted by Graphite Agent
Is this helpful? React 👍 or 👎 to let us know.
11 harder versions of the diagnostic evals
Asana Task