Merge pull request #55 from sirius0xdev/feat/multi-agent-team

Feat/multi agent team
This commit is contained in:
sirius0xdev 2026-04-23 00:14:16 -04:00 committed by GitHub
commit 0472e7a1b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 39 additions and 6 deletions

View file

@ -8,9 +8,10 @@ spec:
name: openclaw-brain-vllm name: openclaw-brain-vllm
kind: Deployment kind: Deployment
apiVersion: apps/v1 apiVersion: apps/v1
hosts:
- openclaw-brain-service.customer1.svc.cluster.local
replicas: replicas:
min: 0 min: 0
max: 1 max: 1
host: openclaw-brain-service.customer1.svc.cluster.local
targetPendingRequests: 1 targetPendingRequests: 1
scaledownPeriod: 900 scaledownPeriod: 900

View file

@ -42,7 +42,7 @@ data:
"api": "openai-completions", "api": "openai-completions",
"models": [ "models": [
{ {
"id": "llmfan46/Qwen3.5-27B-uncensored-heretic", "id": "Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16",
"name": "Qwen3.5-27B-Heretic", "name": "Qwen3.5-27B-Heretic",
"reasoning": true, "reasoning": true,
"contextWindow": 40960 "contextWindow": 40960
@ -55,15 +55,47 @@ data:
"agents": { "agents": {
"defaults": { "defaults": {
"model": { "model": {
"primary": "local-vllm/llmfan46/Qwen3.5-27B-uncensored-heretic", "primary": "xai/grok-4.1-fast",
"fallbacks": ["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": [ "list": [
{ {
"id": "default", "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/Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16",
"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/Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16",
"thinking": "high",
"workspace": "/home/node/.openclaw/workspace"
},
{
"id": "sirius-auditor",
"name": "Sirius Auditor",
"model": "local-vllm/Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16",
"thinking": "high",
"workspace": "/home/node/.openclaw/workspace" "workspace": "/home/node/.openclaw/workspace"
} }
] ]