feat(rlm): configure a default subagent model - #923
Open
olivermontes wants to merge 1 commit into
Open
Conversation
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
Adds
subagents.defaultModelas a persistent global or project-level default for RLM child agents.Resolution order is now:
rlm(..., model=...)subagents.defaultModelConfigured selectors use the existing authenticated-catalog lookup and auth preflight. An unavailable selector fails admission rather than silently falling back.
Closes #921.
Validation
npm test -- test/suite/regressions/4649-subagent-model-selection.test.ts test/settings-manager.test.tsnpx biome check packages/coding-agent/src/core/settings-manager.ts packages/coding-agent/src/core/agent-session.ts packages/coding-agent/test/settings-manager.test.ts packages/coding-agent/test/suite/regressions/4649-subagent-model-selection.test.tsnpm run buildNote
Add
subagents.defaultModelsetting to configure a default subagent model in RLMsubagents.defaultModelfield to theSettingsinterface and agetSubagentDefaultModel()accessor onSettingsManager.AgentSession.runRlmChild, the configured default is used when no explicit model is passed torlm.run, falling back to the parent model only if neither is set.Macroscope summarized c4fe65d.