feat: update DEFAULT_CODEX_MODEL to gpt-5.2 across relevant files
This commit is contained in:
parent
48047cf288
commit
9d5bdae20c
6 changed files with 6 additions and 10 deletions
|
|
@ -4,4 +4,4 @@ OPENAI_URL = "https://api.openai.com/v1"
|
|||
DEFAULT_OPENAI_MODEL = "gpt-4.1"
|
||||
DEFAULT_GOOGLE_MODEL = "models/gemini-2.5-flash"
|
||||
DEFAULT_ANTHROPIC_MODEL = "claude-sonnet-4-20250514"
|
||||
DEFAULT_CODEX_MODEL = "gpt-5.1-codex-mini"
|
||||
DEFAULT_CODEX_MODEL = "gpt-5.2"
|
||||
|
|
|
|||
|
|
@ -52,10 +52,9 @@ const CHATGPT_MODELS: CodexModel[] = [
|
|||
{ id: "gpt-5.4-mini", name: "GPT-5.4-Mini" },
|
||||
{ id: "gpt-5.3-codex", name: "GPT-5.3-Codex" },
|
||||
{ id: "gpt-5.2", name: "GPT-5.2" },
|
||||
{ id: "gpt-5.1-codex-mini", name: "GPT-5.1-Codex-Mini" },
|
||||
];
|
||||
|
||||
const DEFAULT_CODEX_MODEL = "gpt-5.1-codex-mini";
|
||||
const DEFAULT_CODEX_MODEL = "gpt-5.2";
|
||||
|
||||
export default function CodexConfig({
|
||||
codexModel,
|
||||
|
|
|
|||
|
|
@ -39,10 +39,9 @@ export const CHATGPT_MODELS: CodexModel[] = [
|
|||
{ id: "gpt-5.4-mini", name: "GPT-5.4-Mini" },
|
||||
{ id: "gpt-5.3-codex", name: "GPT-5.3-Codex" },
|
||||
{ id: "gpt-5.2", name: "GPT-5.2" },
|
||||
{ id: "gpt-5.1-codex-mini", name: "GPT-5.1-Codex-Mini" },
|
||||
];
|
||||
|
||||
export const DEFAULT_CODEX_MODEL = "gpt-5.1-codex-mini";
|
||||
export const DEFAULT_CODEX_MODEL = "gpt-5.2";
|
||||
|
||||
export default function CodexConfig({
|
||||
codexModel,
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@ OPENAI_URL = "https://api.openai.com/v1"
|
|||
DEFAULT_OPENAI_MODEL = "gpt-4.1"
|
||||
DEFAULT_GOOGLE_MODEL = "models/gemini-2.5-flash"
|
||||
DEFAULT_ANTHROPIC_MODEL = "claude-sonnet-4-20250514"
|
||||
DEFAULT_CODEX_MODEL = "gpt-5.1-codex-mini"
|
||||
DEFAULT_CODEX_MODEL = "gpt-5.2"
|
||||
|
|
|
|||
|
|
@ -52,10 +52,9 @@ const CHATGPT_MODELS: CodexModel[] = [
|
|||
{ id: "gpt-5.4-mini", name: "GPT-5.4-Mini" },
|
||||
{ id: "gpt-5.3-codex", name: "GPT-5.3-Codex" },
|
||||
{ id: "gpt-5.2", name: "GPT-5.2" },
|
||||
{ id: "gpt-5.1-codex-mini", name: "GPT-5.1-Codex-Mini" },
|
||||
];
|
||||
|
||||
const DEFAULT_CODEX_MODEL = "gpt-5.1-codex-mini";
|
||||
const DEFAULT_CODEX_MODEL = "gpt-5.2";
|
||||
|
||||
export default function CodexConfig({
|
||||
codexModel,
|
||||
|
|
|
|||
|
|
@ -39,10 +39,9 @@ export const CHATGPT_MODELS: CodexModel[] = [
|
|||
{ id: "gpt-5.4-mini", name: "GPT-5.4-Mini" },
|
||||
{ id: "gpt-5.3-codex", name: "GPT-5.3-Codex" },
|
||||
{ id: "gpt-5.2", name: "GPT-5.2" },
|
||||
{ id: "gpt-5.1-codex-mini", name: "GPT-5.1-Codex-Mini" },
|
||||
];
|
||||
|
||||
export const DEFAULT_CODEX_MODEL = "gpt-5.1-codex-mini";
|
||||
export const DEFAULT_CODEX_MODEL = "gpt-5.2";
|
||||
|
||||
export default function CodexConfig({
|
||||
codexModel,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue