From bad775f49abfea4c52be5540e3b6fefc368cfc5d Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 22 May 2026 10:17:13 +0200 Subject: [PATCH] fix(mx): point nextcloud bot at the fast model halo's llama-server now runs in router mode where the model field selects a preset (coder/fast/bge-m3); the old "halo-8000" name is no longer valid. Use the fast MoE model for the Talk bot's responses. --- systems/x86_64-linux/mx/nextcloud-opencode-bot/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/mx/nextcloud-opencode-bot/default.nix b/systems/x86_64-linux/mx/nextcloud-opencode-bot/default.nix index 23b9af8..255db37 100644 --- a/systems/x86_64-linux/mx/nextcloud-opencode-bot/default.nix +++ b/systems/x86_64-linux/mx/nextcloud-opencode-bot/default.nix @@ -7,7 +7,7 @@ nextcloudUrl = "https://nc.hoyer.xyz"; botSecretFile = config.sops.secrets."nextcloud-opencode-bot/secret".path; modelBaseUrl = "http://halo.hoyer.tail:8000/v1"; - model = "halo-8000"; + model = "fast"; botName = "Halo"; timeout = 200; allowedUsers = [ ];