fix(models): 更新 Ollama 設定 — M1 Pro + deepseek-r1:14b
- endpoint: 188 → 111 (M1 Pro, 40+ tok/s) - rca/default model: qwen2.5:7b-instruct → deepseek-r1:14b (SRE最強推理) - summary model: llama3.2:3b → gemma3:4b (快速摘要) - timeout: 90s → 120s (deepseek-r1:14b 實測最慢 54s) - version: 1.1.0 → 1.2.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"name": "OpenClaw AI Router Configuration",
|
||||
"version": "1.1.0",
|
||||
"version": "1.2.0",
|
||||
"description": "AI 模型路由與備援設定 (ADR-006 + ADR-036 Nemotron)",
|
||||
"updated_at": "2026-03-29",
|
||||
"updated_at": "2026-04-08",
|
||||
|
||||
"default_provider": "ollama",
|
||||
"fallback_order": ["ollama", "gemini", "claude"],
|
||||
@@ -11,15 +11,15 @@
|
||||
|
||||
"providers": {
|
||||
"ollama": {
|
||||
"name": "Ollama (Local)",
|
||||
"name": "Ollama (Local M1 Pro)",
|
||||
"enabled": true,
|
||||
"priority": 1,
|
||||
"endpoint": "http://192.168.0.188:11434",
|
||||
"endpoint": "http://192.168.0.111:11434",
|
||||
"api_path": "/api/generate",
|
||||
"models": {
|
||||
"default": "qwen2.5:7b-instruct",
|
||||
"rca": "qwen2.5:7b-instruct",
|
||||
"summary": "llama3.2:3b"
|
||||
"default": "deepseek-r1:14b",
|
||||
"rca": "deepseek-r1:14b",
|
||||
"summary": "gemma3:4b"
|
||||
},
|
||||
"options": {
|
||||
"temperature": 0.1,
|
||||
@@ -27,7 +27,7 @@
|
||||
"num_predict": 1024,
|
||||
"format": "json"
|
||||
},
|
||||
"timeout_seconds": 90,
|
||||
"timeout_seconds": 120,
|
||||
"cost": {
|
||||
"per_1k_tokens": 0,
|
||||
"currency": "USD"
|
||||
|
||||
Reference in New Issue
Block a user