mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-22 10:32:00 +00:00
14 lines
465 B
Python
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"
|