refactor: drop codex oauth model warning

This commit is contained in:
teknium1 2026-03-13 21:18:29 -07:00
parent 529729831c
commit 899cb52e7a
4 changed files with 3 additions and 15 deletions

View file

@ -54,7 +54,7 @@ def test_get_codex_model_ids_falls_back_to_curated_defaults(tmp_path, monkeypatc
assert models[: len(DEFAULT_CODEX_MODELS)] == DEFAULT_CODEX_MODELS
def test_model_command_warns_when_gpt_5_4_is_unavailable_for_codex(monkeypatch, capsys):
def test_model_command_uses_runtime_access_token_for_codex_list(monkeypatch):
from hermes_cli.main import _model_flow_openai_codex
captured = {}
@ -87,12 +87,10 @@ def test_model_command_warns_when_gpt_5_4_is_unavailable_for_codex(monkeypatch,
)
_model_flow_openai_codex({}, current_model="openai/gpt-5.4")
output = capsys.readouterr().out
assert captured["access_token"] == "codex-access-token"
assert captured["model_ids"] == ["gpt-5.2-codex", "gpt-5.2"]
assert "not currently supported for ChatGPT/Codex OAuth accounts" in output
assert "Use OpenRouter if you need GPT-5.4 specifically." in output
assert captured["current_model"] == "openai/gpt-5.4"
# ── Tests for _normalize_model_for_provider ──────────────────────────