hermes-agent/tests/hermes_cli/test_xai_curated_models.py

14 lines
465 B
Python

"""Regression tests for xAI curated model list (OAuth picker)."""
from hermes_cli.models import _PROVIDER_MODELS, provider_model_ids
def test_xai_oauth_includes_grok_composer_2_5_fast():
models = provider_model_ids("xai-oauth")
assert "grok-composer-2.5-fast" in models
def test_grok_composer_slots_after_grok_build():
models = _PROVIDER_MODELS["xai-oauth"]
assert models[0] == "grok-build-0.1"
assert models[1] == "grok-composer-2.5-fast"