Sanitized for public release: - Removed all API keys, tokens, and secrets - Removed personal Discord IDs from hermes-openclaw.json - Updated git URLs to be generic placeholders - All sensitive data uses environment variable interpolation
122 lines
No EOL
2.8 KiB
JSON
122 lines
No EOL
2.8 KiB
JSON
{
|
|
"auth": {
|
|
"profiles": {
|
|
"venice:default": {
|
|
"provider": "venice",
|
|
"mode": "api_key"
|
|
}
|
|
}
|
|
},
|
|
"models": {
|
|
"mode": "merge",
|
|
"providers": {
|
|
"venice": {
|
|
"baseUrl": "https://api.venice.ai/api/v1",
|
|
"api": "openai-completions",
|
|
"models": [
|
|
{
|
|
"id": "zai-org-glm-5",
|
|
"name": "GLM 5",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 202752,
|
|
"maxTokens": 8192
|
|
},
|
|
{
|
|
"id": "zai-org-glm-4.7",
|
|
"name": "GLM 4.7",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 202752,
|
|
"maxTokens": 8192
|
|
},
|
|
{
|
|
"id": "olafangensan-glm-4.7-flash-heretic",
|
|
"name": "GLM 4.7 Flash Heretic",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 131072,
|
|
"maxTokens": 8192
|
|
},
|
|
{
|
|
"id": "kimi-k2-5",
|
|
"name": "Kimi K2.5",
|
|
"reasoning": true,
|
|
"input": ["text", "image"],
|
|
"contextWindow": 256000,
|
|
"maxTokens": 65536
|
|
},
|
|
{
|
|
"id": "deepseek-v3.2",
|
|
"name": "DeepSeek V3.2",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 64000,
|
|
"maxTokens": 8192
|
|
},
|
|
{
|
|
"id": "qwen3-coder-480b-a35b-instruct",
|
|
"name": "Qwen3 Coder 480B",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 131072,
|
|
"maxTokens": 16384
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"agents": {
|
|
"defaults": {
|
|
"model": {
|
|
"primary": "venice/olafangensan-glm-4.7-flash-heretic",
|
|
"fallbacks": ["venice/zai-org-glm-5"]
|
|
},
|
|
"workspace": "/home/openclaw/.openclaw/workspace"
|
|
},
|
|
"list": [
|
|
{
|
|
"id": "hermes",
|
|
"default": true,
|
|
"workspace": "/home/openclaw/.openclaw/workspace"
|
|
}
|
|
]
|
|
},
|
|
"tools": {
|
|
"web": {
|
|
"search": {
|
|
"enabled": true,
|
|
"provider": "brave",
|
|
"apiKey": "${BRAVE_SEARCH_API_KEY}"
|
|
},
|
|
"fetch": { "enabled": true }
|
|
},
|
|
"exec": {
|
|
"security": "allowlist",
|
|
"ask": "on-miss"
|
|
}
|
|
},
|
|
"messages": {
|
|
"queue": { "mode": "collect" },
|
|
"ackReactionScope": "all"
|
|
},
|
|
"channels": {
|
|
"discord": {
|
|
"enabled": true,
|
|
"token": "${DISCORD_BOT_TOKEN}",
|
|
"groupPolicy": "allowlist",
|
|
"guilds": {
|
|
"YOUR_GUILD_ID": {
|
|
"requireMention": false,
|
|
"users": ["YOUR_USER_ID"],
|
|
"channels": { "*": { "allow": true } }
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"gateway": {
|
|
"port": 18789,
|
|
"mode": "local",
|
|
"bind": "loopback"
|
|
}
|
|
} |