feat(agents): add specialized Sirius team with model routing
- 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
This commit is contained in:
parent
fffe3f20d6
commit
0fa26fcd2e
1 changed files with 36 additions and 4 deletions
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue