-
Notifications
You must be signed in to change notification settings - Fork 13.2k
[codex] Select multi-agent version from model info #25427
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
Changes from all commits
6565170
e286cda
8ea7280
64eaff8
c8010aa
d6b9156
5d81bf9
5c383a7
6b5783c
2a541b8
62785c8
7737b55
05ea7b9
1c9c559
7895f77
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -428,11 +428,13 @@ pub(crate) struct CodexSpawnArgs { | |
| fn resolve_multi_agent_version( | ||
| conversation_history: &InitialHistory, | ||
| inherited_multi_agent_version: Option<MultiAgentVersion>, | ||
| model_info: &ModelInfo, | ||
| config: &Config, | ||
| ) -> Option<MultiAgentVersion> { | ||
| conversation_history | ||
| .get_multi_agent_version() | ||
| .or(inherited_multi_agent_version) | ||
| .or(model_info.multi_agent_version) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When resuming a thread whose rollout predates persisted Useful? React with 👍 / 👎. |
||
| .or_else(|| config.multi_agent_version_from_features()) | ||
| } | ||
|
|
||
|
|
@@ -554,6 +556,7 @@ impl Codex { | |
| let multi_agent_version = resolve_multi_agent_version( | ||
| &conversation_history, | ||
| inherited_multi_agent_version, | ||
| &model_info, | ||
| &config, | ||
| ); | ||
| let _ = config | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.