fix: update codex sdk and add codex model IDs (#385)

This commit is contained in:
Wondoo Kang
2026-02-17 03:07:44 +09:00
committed by GitHub
parent 8723393b66
commit 2cfcae049b
3 changed files with 134 additions and 7 deletions

View File

@@ -55,6 +55,8 @@ export const CURSOR_MODELS = {
*/
export const CODEX_MODELS = {
OPTIONS: [
{ value: 'gpt-5.3-codex', label: 'GPT-5.3 Codex' },
{ value: 'gpt-5.2-codex', label: 'GPT-5.2 Codex' },
{ value: 'gpt-5.2', label: 'GPT-5.2' },
{ value: 'gpt-5.1-codex-max', label: 'GPT-5.1 Codex Max' },
{ value: 'o3', label: 'O3' },
@@ -62,4 +64,4 @@ export const CODEX_MODELS = {
],
DEFAULT: 'gpt-5.2'
};
};