From be717a83d3d4dbe34c2a90a4ca9920c8805da1b4 Mon Sep 17 00:00:00 2001 From: LeeJhin Date: Tue, 9 Jun 2026 22:52:34 +0900 Subject: [PATCH 1/2] Set GPT-5.5 xhigh as agent default model Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- packages/agent/src/config/models.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/agent/src/config/models.ts b/packages/agent/src/config/models.ts index 729f260..56c5f2b 100644 --- a/packages/agent/src/config/models.ts +++ b/packages/agent/src/config/models.ts @@ -1,12 +1,12 @@ /** Default model assignments per agent role. Each prompt frontmatter (D-8) overrides per-call. */ export const DEFAULT_MODELS = { - intent: "gpt-4o-mini", - generator: "gpt-4o", - constraintCritic: "gpt-4o-mini", - refiner: "gpt-4o", - 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)", + solver: "gpt-5.5(xhigh)", + objectiveLlm: "gpt-5.5(xhigh)", } as const; export type AgentRole = keyof typeof DEFAULT_MODELS; From 38af343a729da9924316594619a84ee88516dc62 Mon Sep 17 00:00:00 2001 From: LeeJhin Date: Tue, 9 Jun 2026 22:52:52 +0900 Subject: [PATCH 2/2] Document GPT-5.5 xhigh CLIProxy defaults Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- README.md | 2 +- packages/agent/.env.example | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ed5c2c8..1ecf3bf 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ pnpm build # production build (agent + web) LLM_PROVIDER=cliproxy LLM_BASE_URL=http://localhost:8317/v1 LLM_API_KEY=dummy-key -LLM_MODEL=gpt-4o # 또는 claude-3-5-sonnet, gemini-2.0-flash +LLM_MODEL=gpt-5.5(xhigh) # CLIProxyAPI thinking suffix: GPT-5.5 + xhigh reasoning ``` **Trade-off**: 로컬 라우터 별도 실행 필요. 캐시·모델 비교에 유리. diff --git a/packages/agent/.env.example b/packages/agent/.env.example index a8795dc..12318b2 100644 --- a/packages/agent/.env.example +++ b/packages/agent/.env.example @@ -19,7 +19,7 @@ LLM_PROVIDER=cliproxy # (옵션 1) CLIProxyAPI 로컬 라우터 — Claude/GPT/Gemini 통합 (https://github.com/router-for-me/CLIProxyAPI) CLIPROXY_BASE_URL=http://localhost:8317/v1 CLIPROXY_API_KEY=dummy-key -CLIPROXY_MODEL=gpt-4o +CLIPROXY_MODEL=gpt-5.5(xhigh) # (옵션 2) OpenAI 직접 — 비용/속도 안정. LLM_PROVIDER=openai 와 함께. # OPENAI_API_KEY=sk-... @@ -28,4 +28,4 @@ CLIPROXY_MODEL=gpt-4o # Canonical aliases — 위 3가지 옵션 중 어느 것도 매핑되지 않으면 이 3개로 직접 지정 가능 LLM_BASE_URL=http://localhost:8317/v1 LLM_API_KEY=dummy-key -LLM_MODEL=gpt-4o +LLM_MODEL=gpt-5.5(xhigh)