Set GPT-5.5 xhigh as agent default#15
Merged
Merged
Conversation
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
There was a problem hiding this comment.
1 issue found across 3 files
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="packages/agent/src/config/models.ts">
<violation number="1" location="packages/agent/src/config/models.ts:5">
P2: Default model IDs now use a provider-specific alias format (`gpt-5.5(xhigh)`) that is passed unchanged to OpenAI, which expects the base model slug and separate reasoning-effort options.</violation>
</file>
Reply with feedback, questions, or to request a fix.
Re-trigger cubic
| solver: "gpt-4o", | ||
| objectiveLlm: "gpt-4o-mini", | ||
| intent: "gpt-5.5(xhigh)", | ||
| generator: "gpt-5.5(xhigh)", |
There was a problem hiding this comment.
P2: Default model IDs now use a provider-specific alias format (gpt-5.5(xhigh)) that is passed unchanged to OpenAI, which expects the base model slug and separate reasoning-effort options.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At packages/agent/src/config/models.ts, line 5:
<comment>Default model IDs now use a provider-specific alias format (`gpt-5.5(xhigh)`) that is passed unchanged to OpenAI, which expects the base model slug and separate reasoning-effort options.</comment>
<file context>
@@ -1,12 +1,12 @@
- solver: "gpt-4o",
- objectiveLlm: "gpt-4o-mini",
+ intent: "gpt-5.5(xhigh)",
+ generator: "gpt-5.5(xhigh)",
+ constraintCritic: "gpt-5.5(xhigh)",
+ refiner: "gpt-5.5(xhigh)",
</file context>
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
gpt-5.5(xhigh)Verification
model: gpt-5.5(xhigh)returned OKSummary by cubic
Set
gpt-5.5(xhigh)as the default model for all agent roles and updatedCLIProxyAPIREADME/.env.exampleto match. This unifies defaults and enables stronger reasoning by default.gpt-5.5(xhigh), pinLLM_MODEL/CLIPROXY_MODELto an available model or upgrade your router.CLIProxyAPI, the examples now default togpt-5.5(xhigh); no change needed unless you prefer a different model.Written for commit 38af343. Summary will update on new commits.