fix: propagate depth and persistent parameters in DaytonaREPL#71
Merged
alexzhang13 merged 1 commit intoalexzhang13:mainfrom Jan 26, 2026
Merged
Conversation
- Add depth parameter to _build_exec_script() and embed in sandbox-side
llm_query()/llm_query_batched() requests
- Pass depth=self.depth in LMRequest and send_lm_request_batched()
- Add persistent parameter with NotImplementedError
Signed-off-by: rovle <lovre.pesut@gmail.com>
alexzhang13
approved these changes
Jan 26, 2026
Owner
alexzhang13
left a comment
There was a problem hiding this comment.
Thanks, I didn't notice this before because I only ran through some basic unit tests. I should probably update those as well to add mock sub-LM calls too.
ShaneIsley
pushed a commit
to ShaneIsley/rlm
that referenced
this pull request
Jan 29, 2026
Merged 4 commits from upstream (alexzhang13/rlm): - fix: ensure docker env uses shared workspace dir (alexzhang13#48) - fix: resolve type mismatch in usage summary propagation (alexzhang13#55) - feat: add Daytona sandbox support (alexzhang13#36) - fix: propagate depth and persistent parameters in DaytonaREPL (alexzhang13#71) Resolved conflicts in rlm/core/types.py and rlm/environments/__init__.py to integrate Daytona with our registry-based environment system. https://claude.ai/code/session_01VU6KvWSCkKinCMxQDXdNxy
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.
DaytonaREPL was not propagating
depthandpersistentparameters.The missing
depthpropagation meant LLM sub-calls from Daytona sandboxes always arrived at LMHandler withdepth=0, soother_backendsrouting for recursive sub-calls didn't work.Also added the persistent parameter which was missing.
Changes
depththrough_build_exec_script(), sandbox-sidellm_query()/llm_query_batched(), and host-side_handle_llm_request()persistentparameter withNotImplementedError(for now!)