From 0fa26fcd2e20c5491dbddd8a8a87fa4664f8be01 Mon Sep 17 00:00:00 2001 From: Sirius Claw Date: Thu, 23 Apr 2026 03:16:39 +0000 Subject: [PATCH 1/3] feat(agents): add specialized Sirius team with model routing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Default + Ops → Grok 4.1 Fast (light & fast) - Trade, Research, Auditor → Qwen3.5-27B on A100 (high token / heavy reasoning) - Updated defaults and added thinking levels where appropriate - Prepares for routing high-load work to local vLLM --- .../customer1/openclaw/new-configmap.yaml | 40 +++++++++++++++++-- 1 file changed, 36 insertions(+), 4 deletions(-) diff --git a/apps/base/customer1/openclaw/new-configmap.yaml b/apps/base/customer1/openclaw/new-configmap.yaml index 708d667..3a6bbcb 100644 --- a/apps/base/customer1/openclaw/new-configmap.yaml +++ b/apps/base/customer1/openclaw/new-configmap.yaml @@ -55,15 +55,47 @@ data: "agents": { "defaults": { "model": { - "primary": "local-vllm/llmfan46/Qwen3.5-27B-uncensored-heretic", - "fallbacks": ["xai/grok-4.1-fast"] + "primary": "xai/grok-4.1-fast", + "fallbacks": ["local-vllm/llmfan46/Qwen3.5-27B-uncensored-heretic"] }, - "workspace": "/home/node/.openclaw/workspace" + "workspace": "/home/node/.openclaw/workspace", + "maxConcurrent": 4, + "subagents": { + "maxConcurrent": 8 + } }, "list": [ { "id": "default", - "name": "OpenClaw Assistant", + "name": "Grok Assistant", + "model": "xai/grok-4.1-fast", + "workspace": "/home/node/.openclaw/workspace" + }, + { + "id": "sirius-trade", + "name": "Sirius Trade", + "model": "local-vllm/llmfan46/Qwen3.5-27B-uncensored-heretic", + "thinking": "medium", + "workspace": "/home/node/.openclaw/workspace" + }, + { + "id": "sirius-ops", + "name": "Sirius Ops", + "model": "xai/grok-4.1-fast", + "workspace": "/home/node/.openclaw/workspace" + }, + { + "id": "sirius-research", + "name": "Sirius Research", + "model": "local-vllm/llmfan46/Qwen3.5-27B-uncensored-heretic", + "thinking": "high", + "workspace": "/home/node/.openclaw/workspace" + }, + { + "id": "sirius-auditor", + "name": "Sirius Auditor", + "model": "local-vllm/llmfan46/Qwen3.5-27B-uncensored-heretic", + "thinking": "high", "workspace": "/home/node/.openclaw/workspace" } ] From e0ce27f7cd5a9ddb80fab1422905b48afe58af2b Mon Sep 17 00:00:00 2001 From: Sirius Claw Date: Thu, 23 Apr 2026 04:07:31 +0000 Subject: [PATCH 2/3] fix(keda): use 'hosts' array instead of 'host' to match installed CRD schema Fixes: .spec.host: field not declared in schema error during Flux dry-run. --- apps/base/customer1/openclaw/keda-vllm.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/base/customer1/openclaw/keda-vllm.yaml b/apps/base/customer1/openclaw/keda-vllm.yaml index 52fbc1e..0f47a30 100644 --- a/apps/base/customer1/openclaw/keda-vllm.yaml +++ b/apps/base/customer1/openclaw/keda-vllm.yaml @@ -8,9 +8,10 @@ spec: name: openclaw-brain-vllm kind: Deployment apiVersion: apps/v1 + hosts: + - openclaw-brain-service.customer1.svc.cluster.local replicas: min: 0 max: 1 - host: openclaw-brain-service.customer1.svc.cluster.local targetPendingRequests: 1 scaledownPeriod: 900 From 31d9ecc81db7f5f3e6944b69800c9fa376edb08b Mon Sep 17 00:00:00 2001 From: Sirius Claw Date: Thu, 23 Apr 2026 04:10:48 +0000 Subject: [PATCH 3/3] chore(model): switch heavy agents to Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16 Updated default model definition and all high-token agents (Trade, Research, Auditor) to the new Qwen3.6 abliteration. --- apps/base/customer1/openclaw/new-configmap.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/base/customer1/openclaw/new-configmap.yaml b/apps/base/customer1/openclaw/new-configmap.yaml index 3a6bbcb..06a669c 100644 --- a/apps/base/customer1/openclaw/new-configmap.yaml +++ b/apps/base/customer1/openclaw/new-configmap.yaml @@ -42,7 +42,7 @@ data: "api": "openai-completions", "models": [ { - "id": "llmfan46/Qwen3.5-27B-uncensored-heretic", + "id": "Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16", "name": "Qwen3.5-27B-Heretic", "reasoning": true, "contextWindow": 40960 @@ -74,7 +74,7 @@ data: { "id": "sirius-trade", "name": "Sirius Trade", - "model": "local-vllm/llmfan46/Qwen3.5-27B-uncensored-heretic", + "model": "local-vllm/Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16", "thinking": "medium", "workspace": "/home/node/.openclaw/workspace" }, @@ -87,14 +87,14 @@ data: { "id": "sirius-research", "name": "Sirius Research", - "model": "local-vllm/llmfan46/Qwen3.5-27B-uncensored-heretic", + "model": "local-vllm/Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16", "thinking": "high", "workspace": "/home/node/.openclaw/workspace" }, { "id": "sirius-auditor", "name": "Sirius Auditor", - "model": "local-vllm/llmfan46/Qwen3.5-27B-uncensored-heretic", + "model": "local-vllm/Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16", "thinking": "high", "workspace": "/home/node/.openclaw/workspace" }