Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license
This commit is contained in:
@@ -0,0 +1,279 @@
|
||||
"""Tests for named user-defined provider entries in the ACP model selector.
|
||||
|
||||
Named endpoints from the ``providers:`` mapping (and legacy
|
||||
``custom_providers:`` list) are invisible to canonical provider enumeration,
|
||||
so ``_build_model_state`` must append them explicitly for ACP clients to
|
||||
offer them — the TUI ``/model`` picker already renders these entries
|
||||
(#47039 implemented named endpoints for the TUI surface only).
|
||||
"""
|
||||
|
||||
from types import SimpleNamespace
|
||||
from unittest.mock import patch
|
||||
|
||||
import pytest
|
||||
|
||||
from acp_adapter.server import HermesACPAgent, _named_custom_provider_catalogs
|
||||
from acp_adapter.session import SessionManager
|
||||
from acp.schema import SessionModelState
|
||||
|
||||
|
||||
MANTLE_URL = "https://bedrock-mantle.us-east-1.api.aws/openai/v1"
|
||||
|
||||
|
||||
def _cfg(providers=None, custom_providers=None):
|
||||
cfg = {}
|
||||
if providers is not None:
|
||||
cfg["providers"] = providers
|
||||
if custom_providers is not None:
|
||||
cfg["custom_providers"] = custom_providers
|
||||
return cfg
|
||||
|
||||
|
||||
class TestNamedCustomProviderCatalogs:
|
||||
|
||||
def test_live_discovery_extends_declared_models(self, monkeypatch):
|
||||
monkeypatch.setenv("SOME_KEY", "k")
|
||||
cfg = _cfg(
|
||||
providers={
|
||||
"relay": {
|
||||
"name": "Relay",
|
||||
"base_url": "https://relay.example/v1",
|
||||
"key_env": "SOME_KEY",
|
||||
"default_model": "model-a",
|
||||
}
|
||||
}
|
||||
)
|
||||
with patch("hermes_cli.config.load_config", return_value=cfg), patch(
|
||||
"hermes_cli.model_switch._fetch_picker_live_models",
|
||||
return_value=["model-a", "model-b"],
|
||||
):
|
||||
catalogs = _named_custom_provider_catalogs()
|
||||
|
||||
assert len(catalogs) == 1
|
||||
slug, label, models = catalogs[0]
|
||||
assert slug == "custom:relay"
|
||||
assert [m for m, _ in models] == ["model-a", "model-b"]
|
||||
|
||||
|
||||
def test_disabled_provider_skipped(self, monkeypatch):
|
||||
monkeypatch.setenv("SOME_KEY", "k")
|
||||
cfg = _cfg(
|
||||
providers={
|
||||
"off": {
|
||||
"name": "Disabled Endpoint",
|
||||
"base_url": "https://off.example/v1",
|
||||
"key_env": "SOME_KEY",
|
||||
"default_model": "m",
|
||||
"enabled": False,
|
||||
}
|
||||
}
|
||||
)
|
||||
with patch("hermes_cli.config.load_config", return_value=cfg), patch(
|
||||
"hermes_cli.model_switch._fetch_picker_live_models", return_value=None
|
||||
):
|
||||
assert _named_custom_provider_catalogs() == []
|
||||
|
||||
def test_no_credential_and_no_declared_models_skipped(self, monkeypatch):
|
||||
monkeypatch.delenv("MISSING_KEY", raising=False)
|
||||
cfg = _cfg(
|
||||
providers={
|
||||
"bare": {
|
||||
"name": "Bare",
|
||||
"base_url": "https://bare.example/v1",
|
||||
"key_env": "MISSING_KEY",
|
||||
}
|
||||
}
|
||||
)
|
||||
with patch("hermes_cli.config.load_config", return_value=cfg), patch(
|
||||
"hermes_cli.model_switch._fetch_picker_live_models", return_value=None
|
||||
):
|
||||
assert _named_custom_provider_catalogs() == []
|
||||
|
||||
def test_legacy_custom_providers_list_included(self, monkeypatch):
|
||||
monkeypatch.setenv("SOME_KEY", "k")
|
||||
cfg = _cfg(
|
||||
custom_providers=[
|
||||
{
|
||||
"name": "Legacy Endpoint",
|
||||
"base_url": "https://legacy.example/v1",
|
||||
"key_env": "SOME_KEY",
|
||||
"model": "legacy-model",
|
||||
}
|
||||
]
|
||||
)
|
||||
with patch("hermes_cli.config.load_config", return_value=cfg), patch(
|
||||
"hermes_cli.model_switch._fetch_picker_live_models", return_value=None
|
||||
):
|
||||
catalogs = _named_custom_provider_catalogs()
|
||||
|
||||
assert catalogs == [
|
||||
("custom:legacy-endpoint", "Legacy Endpoint", [("legacy-model", "")])
|
||||
]
|
||||
def test_no_key_ollama_provider_discovers_native_catalog(self):
|
||||
cfg = _cfg(
|
||||
providers={
|
||||
"custom:ollama": {
|
||||
"name": "Ollama",
|
||||
"base_url": "http://127.0.0.1:11434/v1",
|
||||
}
|
||||
}
|
||||
)
|
||||
with patch("hermes_cli.config.load_config", return_value=cfg), patch(
|
||||
"hermes_cli.models.should_use_ollama_native_catalog",
|
||||
return_value=True,
|
||||
), patch(
|
||||
"hermes_cli.model_switch._fetch_picker_live_models",
|
||||
return_value=["qwen3:1.7b"],
|
||||
) as fetch:
|
||||
catalogs = _named_custom_provider_catalogs()
|
||||
|
||||
assert [m for m, _ in catalogs[0][2]] == ["qwen3:1.7b"]
|
||||
fetch.assert_called_once_with(
|
||||
"",
|
||||
"http://127.0.0.1:11434/v1",
|
||||
"custom:ollama",
|
||||
False,
|
||||
headers=None,
|
||||
timeout=1.5,
|
||||
api_mode=None,
|
||||
)
|
||||
def test_legacy_credentialless_ollama_discovers_native_catalog(self):
|
||||
cfg = _cfg(
|
||||
custom_providers=[
|
||||
{
|
||||
"name": "Local Ollama",
|
||||
"base_url": "http://127.0.0.1:11434/v1",
|
||||
}
|
||||
]
|
||||
)
|
||||
with patch("hermes_cli.config.load_config", return_value=cfg), patch(
|
||||
"hermes_cli.models.should_use_ollama_native_catalog",
|
||||
return_value=True,
|
||||
), patch(
|
||||
"hermes_cli.model_switch._fetch_picker_live_models",
|
||||
return_value=["qwen3:1.7b"],
|
||||
) as fetch:
|
||||
catalogs = _named_custom_provider_catalogs()
|
||||
|
||||
assert [m for m, _ in catalogs[0][2]] == ["qwen3:1.7b"]
|
||||
fetch.assert_called_once()
|
||||
|
||||
def test_native_empty_catalog_is_authoritative_over_default_model(self):
|
||||
cfg = _cfg(
|
||||
providers={
|
||||
"custom:ollama": {
|
||||
"name": "Ollama",
|
||||
"base_url": "http://127.0.0.1:11434/v1",
|
||||
"default_model": "saved:model",
|
||||
}
|
||||
}
|
||||
)
|
||||
from hermes_cli.model_switch import _NativePickerModelList
|
||||
|
||||
with patch("hermes_cli.config.load_config", return_value=cfg), patch(
|
||||
"hermes_cli.models.should_use_ollama_native_catalog",
|
||||
return_value=True,
|
||||
), patch(
|
||||
"hermes_cli.model_switch._fetch_picker_live_models",
|
||||
return_value=_NativePickerModelList(),
|
||||
):
|
||||
assert _named_custom_provider_catalogs() == [
|
||||
("custom:ollama", "Ollama", [])
|
||||
]
|
||||
|
||||
|
||||
class TestModelStateIncludesNamedProviders:
|
||||
@pytest.mark.asyncio
|
||||
async def test_authoritative_empty_named_catalog_does_not_resurrect_current_model(self):
|
||||
manager = SessionManager(
|
||||
agent_factory=lambda: SimpleNamespace(
|
||||
model="saved:model", provider="ollama"
|
||||
)
|
||||
)
|
||||
acp_agent = HermesACPAgent(session_manager=manager)
|
||||
|
||||
with patch("hermes_cli.models.curated_models_for_provider", return_value=[]), patch(
|
||||
"acp_adapter.server._named_custom_provider_catalogs",
|
||||
return_value=[("custom:ollama", "Ollama", [])],
|
||||
):
|
||||
resp = await acp_agent.new_session(cwd="/tmp")
|
||||
|
||||
assert isinstance(resp.models, SessionModelState)
|
||||
assert resp.models.current_model_id == ""
|
||||
assert all(
|
||||
not item.model_id.startswith(("ollama:", "custom:ollama:"))
|
||||
for item in resp.models.available_models
|
||||
)
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_named_provider_models_appear_in_model_state(self):
|
||||
manager = SessionManager(
|
||||
agent_factory=lambda: SimpleNamespace(
|
||||
model="gpt-5.4", provider="openai-codex"
|
||||
)
|
||||
)
|
||||
acp_agent = HermesACPAgent(session_manager=manager)
|
||||
|
||||
with patch(
|
||||
"hermes_cli.models.curated_models_for_provider",
|
||||
return_value=[("gpt-5.4", "recommended")],
|
||||
), patch(
|
||||
"acp_adapter.server._named_custom_provider_catalogs",
|
||||
return_value=[
|
||||
(
|
||||
"custom:bedrock-mantle",
|
||||
"AWS Bedrock Mantle",
|
||||
[("openai.gpt-5.5", "")],
|
||||
)
|
||||
],
|
||||
):
|
||||
resp = await acp_agent.new_session(cwd="/tmp")
|
||||
|
||||
assert isinstance(resp.models, SessionModelState)
|
||||
ids = [m.model_id for m in resp.models.available_models]
|
||||
# Current provider's models come first, named endpoints after.
|
||||
assert ids[0] == "openai-codex:gpt-5.4"
|
||||
assert "custom:bedrock-mantle:openai.gpt-5.5" in ids
|
||||
named = next(
|
||||
m
|
||||
for m in resp.models.available_models
|
||||
if m.model_id == "custom:bedrock-mantle:openai.gpt-5.5"
|
||||
)
|
||||
assert "AWS Bedrock Mantle" in (named.description or "")
|
||||
|
||||
def test_selector_choice_id_round_trips_through_parse_model_input(self):
|
||||
"""The encoded choice id must resolve back to the named provider."""
|
||||
from hermes_cli.models import parse_model_input
|
||||
|
||||
choice_id = "custom:bedrock-mantle:openai.gpt-5.5"
|
||||
cfg = {
|
||||
"providers": {
|
||||
"bedrock-mantle": {
|
||||
"name": "AWS Bedrock Mantle",
|
||||
"base_url": "https://bedrock.example/v1",
|
||||
}
|
||||
}
|
||||
}
|
||||
with patch("hermes_cli.config.load_config", return_value=cfg):
|
||||
provider, model = parse_model_input(choice_id, "bedrock")
|
||||
assert provider == "custom:bedrock-mantle"
|
||||
assert model == "openai.gpt-5.5"
|
||||
|
||||
def test_selector_choice_id_round_trips_colon_bearing_custom_identity(self):
|
||||
"""Configured provider and model IDs may both contain colons."""
|
||||
from hermes_cli.models import parse_model_input
|
||||
|
||||
cfg = {
|
||||
"providers": {
|
||||
"local-127.0.0.1:11434": {
|
||||
"name": "Local Ollama",
|
||||
"base_url": "http://127.0.0.1:11434/v1",
|
||||
}
|
||||
}
|
||||
}
|
||||
with patch("hermes_cli.config.load_config", return_value=cfg):
|
||||
provider, model = parse_model_input(
|
||||
"custom:local-127.0.0.1:11434:qwen3:1.7b", "custom"
|
||||
)
|
||||
assert provider == "custom:local-127.0.0.1:11434"
|
||||
assert model == "qwen3:1.7b"
|
||||
Reference in New Issue
Block a user