-
Notifications
You must be signed in to change notification settings - Fork 2.9k
feat: upgrade oracle agent primary model to gpt-5.4 #2331
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
base: dev
Are you sure you want to change the base?
Changes from all commits
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -181,7 +181,7 @@ You can override specific agents or categories in your config: | |||||
| "explore": { "model": "github-copilot/grok-code-fast-1" }, | ||||||
|
|
||||||
| // Architecture consultation: GPT or Claude Opus | ||||||
| "oracle": { "model": "openai/gpt-5.2", "variant": "high" } | ||||||
| "oracle": { "model": "openai/gpt-5.4", "variant": "high" } | ||||||
|
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. P1: Custom agent: Opencode Compatibility Upgrading to Prompt for AI agents
Suggested change
|
||||||
| }, | ||||||
|
|
||||||
| "categories": { | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -322,7 +322,7 @@ describe("generateOmoConfig - model fallback system", () => { | |||||
| // #then Sisyphus is omitted (requires all fallback providers) | ||||||
| expect((result.agents as Record<string, { model: string }>).sisyphus).toBeUndefined() | ||||||
| // #then Oracle should use native OpenAI (first fallback entry) | ||||||
| expect((result.agents as Record<string, { model: string }>).oracle.model).toBe("openai/gpt-5.2") | ||||||
| expect((result.agents as Record<string, { model: string }>).oracle.model).toBe("openai/gpt-5.4") | ||||||
|
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. P1: Custom agent: Opencode Compatibility Upgrading to Prompt for AI agents
Suggested change
|
||||||
| // #then multimodal-looker should use native OpenAI (first fallback entry is gpt-5.3-codex) | ||||||
| expect((result.agents as Record<string, { model: string }>)["multimodal-looker"].model).toBe("openai/gpt-5.3-codex") | ||||||
| }) | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ export const CLI_AGENT_MODEL_REQUIREMENTS: Record<string, ModelRequirement> = { | |
| }, | ||
| oracle: { | ||
| fallbackChain: [ | ||
| { providers: ["openai", "github-copilot", "opencode"], model: "gpt-5.2", variant: "high" }, | ||
| { providers: ["openai", "github-copilot", "opencode"], model: "gpt-5.4", variant: "high" }, | ||
|
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. P1: Custom agent: Opencode Compatibility The Prompt for AI agents |
||
| { providers: ["google", "github-copilot", "opencode"], model: "gemini-3.1-pro", variant: "high" }, | ||
| { providers: ["anthropic", "github-copilot", "opencode"], model: "claude-opus-4-6", variant: "max" }, | ||
| ], | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -30,7 +30,7 @@ export const AGENT_MODEL_REQUIREMENTS: Record<string, ModelRequirement> = { | |||||||
| }, | ||||||||
| oracle: { | ||||||||
| fallbackChain: [ | ||||||||
| { providers: ["openai", "github-copilot", "opencode"], model: "gpt-5.2", variant: "high" }, | ||||||||
| { providers: ["openai", "github-copilot", "opencode"], model: "gpt-5.4", variant: "high" }, | ||||||||
|
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. P1: Custom agent: Opencode Compatibility The Prompt for AI agents
Suggested change
|
||||||||
| { providers: ["google", "github-copilot", "opencode"], model: "gemini-3.1-pro", variant: "high" }, | ||||||||
| { providers: ["anthropic", "github-copilot", "opencode"], model: "claude-opus-4-6", variant: "max" }, | ||||||||
| ], | ||||||||
|
|
||||||||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2: Incomplete documentation update: other sections of this file still list
GPT-5.2for the Oracle agent.Prompt for AI agents