fix(terminals): use full Codex 5.6 model ids#253
Merged
Conversation
Решения: - Заменён Codex whitelist на реальные id gpt-5.6-sol, gpt-5.6-terra, gpt-5.6-luna и gpt-5.5, чтобы значение уходило в codex -m без alias-маппинга. - gpt-5.6-sol оставлен первым элементом списка, поэтому он остаётся native default через существующий DefaultModel. - OpenAPI и generated C#/TS артефакты регенерированы из контракта; тесты обновлены на полный id. Отброшено: - Alias-маппинг terra/sol/luna не добавлялся, потому что CLI принимает полный id и утверждённый вариант требует отдавать его напрямую. - Legacy gpt-5.4/gpt-5.4-mini не добавлялись в UI whitelist, чтобы не расширять выбранную оператором поверхность. Ограничения: - Миграция сохранённых last-used значений не добавлялась; старые короткие id будут резолвиться к новому дефолту.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Цель
Исправить запуск Codex под ChatGPT-аккаунтом: в
codex -mдолжен уходить полный id модели из серверного whitelist, а не короткий суффикс.Изменения
gpt-5.6-sol,gpt-5.6-terra,gpt-5.6-luna,gpt-5.5.gpt-5.6-sol+high.Решения
options.Modelнапрямую, теперь это полный Codex id.gpt-5.4иgpt-5.4-miniне добавлялись в UI whitelist, чтобы сохранить утверждённую поверхность выбора.Ограничения
Проверка
dotnet test tests/Throne.Application.Tests/Throne.Application.Tests.csprojdotnet test tests/Throne.Api.Tests/Throne.Api.Tests.csprojdotnet test tests/Throne.Infrastructure.Tests/Throne.Infrastructure.Tests.csprojpnpm test src/entities/terminal-setting/model/types.test.ts src/widgets/intent-panels/agent-terminal-panel/ui/AgentTerminalPanel.test.tsx src/widgets/intent-panels/agent-terminal-panel/ui/AgentTerminalPanel.live.test.tsxbash scripts/quality/verify.sh