examples: send 'haiku' to claude-agent-service (bare alias, auto-roll-forward)
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Viktor Barzin 2026-06-01 19:55:47 +00:00
parent 536f432a46
commit c1c1e2202b
2 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ log = logging.getLogger(__name__)
# in the constant is historical — the value can be any llama-swap model id
# (e.g. `qwen3vl-4b` when k8s-node1's VRAM is mostly held by immich-ml).
QWEN_MODEL = os.environ.get("LLM_MODEL", "qwen3-8b")
CLAUDE_AGENT_MODEL = "claude-haiku-4-5"
CLAUDE_AGENT_MODEL = "haiku"
HTTP_TIMEOUT = httpx.Timeout(60.0)
PROMPT_SYSTEM = (

View file

@ -110,7 +110,7 @@ async def test_fallback_escalates_when_qwen_returns_none() -> None:
)
assert out is not None
assert out.llm_model == "claude-haiku-4-5"
assert out.llm_model == "haiku"
assert out.country == "Philippines"
@ -140,7 +140,7 @@ async def test_fallback_escalates_on_low_confidence() -> None:
assert out is not None
assert out.country == "Thailand"
assert out.llm_model == "claude-haiku-4-5"
assert out.llm_model == "haiku"
@respx.mock