Merged
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
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.
Description
Secrets: basic idea of the eval is that the model must call functions in a specific order and pass information between them in order to solve a puzzle. This is designed in a way to force the model to use sub-LLMs, and those sub-LLMs to use tools, and the secrets can also be in files, so that file access is tested.
decrypt_position(file_name: str, code: str) -> int | strcodeis the correct random string for thefile_name(and thatfile_nameis one of the files) or not and returns the corresponding outputunveil_file_number(sorted_filenames: list[str]) -> int | strget_code_from_file_data(filename: str, filecontent: str) -> strfilenameexists andfilecontentis its actual content, the function returns another random code which can be used by the root-LLM todecrypt_positionwith the filename and the contentdecrypt_positionand checkget_code_from_filesystemand returns the codedecrypt_positionunveil_file_numberwith the correctly ordered filenames; and either it has to retry everything, or it gets a valid numberType of Change
Testing
uv run pytestlocally.Checklist
Note
Adds a new RLM evaluation environment focused on multi-turn tool use and file operations.
environments/rlm_secrets/rlm_secrets.py: definesRLMSecretsEnvwith root tools (decrypt_position,unveil_file_number), sub-LLM tool (get_code_from_file_data), filesystem setup of random.txtfiles, dataset builder, and reward functions (correct_answer,correct_filesystem_state).llm_batchwith state injection for sub-tools and retains rollout filesystem for verification/cleanup.environments/rlm_secrets/README.md: docs for puzzle flow, tools, usage (uv run vf-eval rlm-secrets), config, and rewards.environments/rlm_secrets/pyproject.toml: package metadata,verifiers>=0.1.8dependency, build config, and eval settings.Written by Cursor Bugbot for commit 5295d0a. This will update automatically on new commits. Configure here.