feat: profile解決とmodel catalogを更新

This commit is contained in:
2026-07-30 22:12:25 +09:00
parent d94ef81b43
commit 3e217adc14
34 changed files with 421 additions and 347 deletions
+11
View File
@@ -32,6 +32,17 @@ context_window = 256000
# Codex CLI's model catalog exposes these coding models with a 272k effective
# context window on this route, even when public API docs advertise larger
# model-family windows.
# Codex currently caps the ChatGPT-backed route at 272k even though the public
# GPT-5.6 Sol API model advertises a 1.05M context window. Keep both values so
# resolution and compaction use the effective backend limit without losing the
# underlying model capability.
[[model]]
id = "gpt-5.6-sol"
provider = "codex-oauth"
context_window = 1050000
max_context_window = 272000
capability = { tool_calling = "parallel", structured_output = "json_schema", reasoning = "effort", vision = true, prompt_caching = { kind = "auto" } }
[[model]]
id = "gpt-5.5"
provider = "codex-oauth"
@@ -1,9 +1,9 @@
slug = "default";
description = "Default Yoi coding profile.";
slug = "base";
description = "Shared base configuration for Yoi Worker profiles.";
scope = "workspace_write";
model = {
ref = "codex-oauth/gpt-5.5";
ref = "codex-oauth/gpt-5.6-sol";
};
session = {
+1 -1
View File
@@ -1,4 +1,4 @@
import "./default.dcdl" // {
import "./base.dcdl" // {
slug = "coder";
description = "Ticket implementation coder profile.";
scope = "workspace_write";
+1 -1
View File
@@ -1,4 +1,4 @@
import "./default.dcdl" // {
import "./base.dcdl" // {
slug = "companion";
description = "Workspace companion profile.";
scope = "workspace_write";
+1 -1
View File
@@ -1,4 +1,4 @@
import "./default.dcdl" // {
import "./base.dcdl" // {
slug = "intake";
description = "Ticket intake profile.";
scope = "workspace_write";
+1 -1
View File
@@ -1,4 +1,4 @@
import "./default.dcdl" // {
import "./base.dcdl" // {
slug = "memory-consolidation";
description = "Memory staging consolidation profile.";
scope = "workspace_read";
+1 -1
View File
@@ -1,4 +1,4 @@
import "./default.dcdl" // {
import "./base.dcdl" // {
slug = "orchestrator";
description = "Ticket orchestrator profile.";
scope = "workspace_write";
+1 -1
View File
@@ -1,4 +1,4 @@
import "./default.dcdl" // {
import "./base.dcdl" // {
slug = "reviewer";
description = "Ticket review profile.";
scope = "workspace_read";