diff --git a/config.yaml b/config.yaml index fe24a020..3d92246a 100644 --- a/config.yaml +++ b/config.yaml @@ -26,11 +26,11 @@ terminal: base_url: http://localhost:11434/v1 memory: 5120 - container_disk: 51200 - container_persistent: true - docker_volumes: [] - docker_mount_cwd_to_workspace: false - persistent_shell: true +container_disk: 51200 +container_persistent: true +docker_volumes: [] +docker_mount_cwd_to_workspace: false +persistent_shell: true browser: inactivity_timeout: 120 command_timeout: 30 @@ -181,9 +181,8 @@ mesh: consensus_mode: competitive security: - sovereign_audit: true - no_phone_home: true - + sovereign_audit: true + no_phone_home: true redact_secrets: true tirith_enabled: true tirith_path: tirith @@ -225,7 +224,7 @@ DISCORD_HOME_CHANNEL: '1476292315814297772' providers: ollama: base_url: http://localhost:11434/v1 - model: hermes3:latest + model: gemma4:latest mcp_servers: morrowind: command: python3 @@ -242,6 +241,6 @@ mcp_servers: connect_timeout: 60 fallback_model: provider: ollama - model: hermes3:latest + model: gemma4:latest base_url: http://localhost:11434/v1 api_key: '' diff --git a/cron/jobs.json b/cron/jobs.json index 9dc15ea9..1e20a33d 100644 --- a/cron/jobs.json +++ b/cron/jobs.json @@ -60,7 +60,7 @@ "id": "a77a87392582", "name": "Health Monitor", "prompt": "Check Ollama is responding, disk space, memory, GPU utilization, process count", - "model": "hermes3:latest", + "model": "gemma4:latest", "provider": "ollama", "base_url": "http://localhost:11434/v1", "schedule": { diff --git a/tests/test_local_runtime_defaults.py b/tests/test_local_runtime_defaults.py index e06e291e..3dbc12cf 100644 --- a/tests/test_local_runtime_defaults.py +++ b/tests/test_local_runtime_defaults.py @@ -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"]