feat(val-blog): add 2026-04-30 dream journey post

This commit is contained in:
Chen Gu
2026-08-13 17:00:22 +08:00
committed by Chen Gu
parent 691f96e8a6
commit 81978704fc
941 changed files with 195468 additions and 755 deletions
+33
View File
@@ -0,0 +1,33 @@
# OpenClaw
# ~/.openclaw/openclaw.json models.providers
{
"local": {
"baseUrl": "http://127.0.0.1:8080/v1",
"apiKey": "local-llm-key",
"api": "openai-completions",
"models": [
{
"id": "qwen3-1.8b",
"name": "Qwen3-1.8B (Local)",
"reasoning": false,
"input": ["text"],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 4096,
"maxTokens": 2048
}
]
}
}
# agents.defaults.model.fallbacks
# "fallbacks": [
# "lkeap/kimi-k2.5",
# "local/qwen3-1.8b", <--
# ...
# ]