b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
Build Skills Index / trigger-deploy (push) Waiting to run
CI / Deny unrelated histories (push) Has been skipped
CI / CI timing report (push) Blocked by required conditions
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / All required checks pass (push) Waiting to run
83 lines
3.0 KiB
Python
83 lines
3.0 KiB
Python
import queue
|
|
from unittest.mock import patch
|
|
|
|
from cli import HermesCLI
|
|
from hermes_cli.moa_config import decode_moa_turn
|
|
|
|
|
|
def _make_cli():
|
|
cli = HermesCLI.__new__(HermesCLI)
|
|
cli.config = {
|
|
"moa": {
|
|
"default_preset": "default",
|
|
"presets": {
|
|
"default": {
|
|
"reference_models": [{"provider": "openai-codex", "model": "gpt-5.5"}],
|
|
"aggregator": {"provider": "openrouter", "model": "anthropic/claude-opus-4.8"},
|
|
},
|
|
"review": {
|
|
"reference_models": [{"provider": "openrouter", "model": "deepseek/deepseek-v4-pro"}],
|
|
"aggregator": {"provider": "openrouter", "model": "anthropic/claude-opus-4.8"},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
cli._pending_input = queue.Queue()
|
|
cli._pending_agent_seed = None
|
|
cli._pending_moa_config = None
|
|
cli._pending_moa_disable_after_turn = False
|
|
cli._pending_moa_restore_model = None
|
|
cli._agent_running = False
|
|
cli.agent = None
|
|
cli.provider = "openrouter"
|
|
cli.requested_provider = "openrouter"
|
|
cli.model = "anthropic/claude-opus-4.8"
|
|
cli.api_key = "test-key"
|
|
cli.base_url = "https://openrouter.ai/api/v1"
|
|
cli.api_mode = "chat_completions"
|
|
return cli
|
|
|
|
|
|
def test_moa_bare_shows_usage_no_switch():
|
|
# /moa with no prompt is usage-only now; switching to a preset for the
|
|
# session is done via the model picker, not /moa.
|
|
cli = _make_cli()
|
|
cli._pending_moa_disable_after_turn = False
|
|
with patch("cli._cprint"):
|
|
assert cli.process_command("/moa") is True
|
|
assert cli.provider != "moa"
|
|
assert cli._pending_agent_seed is None
|
|
assert cli._pending_moa_disable_after_turn is False
|
|
|
|
|
|
def test_moa_arg_is_always_one_shot_prompt():
|
|
# Any argument (even a string that matches a preset name) is treated as a
|
|
# one-shot prompt through the DEFAULT preset, then the model is restored.
|
|
cli = _make_cli()
|
|
with patch("cli._cprint"):
|
|
cli.process_command("/moa review")
|
|
assert cli._pending_agent_seed == "review"
|
|
assert cli._pending_moa_disable_after_turn is True
|
|
assert cli.provider == "moa"
|
|
assert cli.model == "default"
|
|
|
|
|
|
def test_moa_non_preset_is_one_shot_prompt():
|
|
cli = _make_cli()
|
|
with patch("cli._cprint"):
|
|
cli.process_command("/moa inspect the flaky test")
|
|
assert cli._pending_agent_seed == "inspect the flaky test"
|
|
assert cli._pending_moa_disable_after_turn is True
|
|
assert cli.provider == "moa"
|
|
assert cli.model == "default"
|
|
assert cli._pending_moa_restore_model["provider"] != "moa"
|
|
|
|
|
|
def test_decode_legacy_encoded_moa_turn_still_works():
|
|
from hermes_cli.moa_config import build_moa_turn_prompt
|
|
|
|
encoded = build_moa_turn_prompt("hello", _make_cli().config["moa"], preset="review")
|
|
prompt, cfg = decode_moa_turn(encoded)
|
|
assert prompt == "hello"
|
|
assert cfg["reference_models"] == [{"provider": "openrouter", "model": "deepseek/deepseek-v4-pro"}]
|