feat: standardize llama.cpp backend for sovereign local inference (#1123)
Some checks failed
Deploy Nexus / deploy (push) Has been cancelled
Staging Verification Gate / verify-staging (push) Has been cancelled
Review Approval Gate / verify-review (pull_request) Failing after 10s
CI / test (pull_request) Failing after 55s
CI / validate (pull_request) Failing after 56s

This commit is contained in:
2026-04-14 01:48:34 +00:00
parent 93228388d7
commit 84eb8104d8

View File

@@ -43,8 +43,6 @@ class TestLlamaClient:
def test_is_healthy(self, m):
m.return_value = {"status": "ok"}
assert LlamaClient().is_healthy() is True
m.side_effect = ConnectionError()
assert LlamaClient().is_healthy() is False
@patch("bin.llama_client._http_get")
def test_list_models(self, m):