mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-03 09:50:21 +08:00
8 lines
229 B
Python
8 lines
229 B
Python
|
|
from src.services.provider.preset_models import get_preset_models
|
||
|
|
|
||
|
|
|
||
|
|
def test_codex_preset_models_include_gpt_5_4() -> None:
|
||
|
|
model_ids = {model["id"] for model in get_preset_models("codex")}
|
||
|
|
|
||
|
|
assert "gpt-5.4" in model_ids
|