fix: align ollama/fallback model to gemma4:latest (was hermes3:latest, not installed)

Resolves #291

- config.yaml: providers.ollama.model hermes3:latest -> gemma4:latest
- config.yaml: fallback_model.model hermes3:latest -> gemma4:latest
- config.yaml: fix YAML indent bugs in security block and container keys
- cron/jobs.json: Health Monitor model -> gemma4:latest
- tests/test_local_runtime_defaults.py: update assertion to match
- Machine truth: ollama list shows gemma4:latest installed, hermes3:latest absent
- Gateway: 404 errors on hermes3:latest will stop after restart

Per Alexander: 'we are Gemma4 maxis now. Or hermes trained frontier models'
This commit is contained in:
Alexander Whitestone
2026-04-07 10:16:15 -04:00
parent 95d65a1155
commit 487df48f36
3 changed files with 11 additions and 12 deletions

View File

@@ -18,5 +18,5 @@ def test_config_defaults_to_local_llama_cpp_runtime() -> None:
assert local_provider["model"] == "hermes4:14b"
assert config["fallback_model"]["provider"] == "ollama"
assert config["fallback_model"]["model"] == "hermes3:latest"
assert config["fallback_model"]["model"] == "gemma4:latest"
assert "localhost" in config["fallback_model"]["base_url"]