Handle slow AI backend timeouts

This commit is contained in:
Hermes Agent
2026-09-11 13:42:42 +02:00
parent 9320217e0f
commit b2d2ba58fc
6 changed files with 56 additions and 5 deletions
+9
View File
@@ -16,6 +16,15 @@ def test_load_default_config(tmp_path):
assert "Réponds directement" in cfg.system_prompt
def test_timeout_zero_disables_timeout(tmp_path):
path = tmp_path / "config.json"
path.write_text(json.dumps({"provider": "ollama", "request_timeout_seconds": 0}), encoding="utf-8")
cfg = load_config(path)
assert cfg.request_timeout_seconds is None
def test_reject_invalid_provider(tmp_path):
path = tmp_path / "config.json"
path.write_text(json.dumps({"provider": "bad"}), encoding="utf-8")