-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenclaw.example.json
More file actions
91 lines (91 loc) · 2.15 KB
/
Copy pathopenclaw.example.json
File metadata and controls
91 lines (91 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"models": {
"mode": "merge",
"providers": {
"nvidia-nim": {
"baseUrl": "http://127.0.0.1:8082",
"apiKey": "your-nvidia-nim-api-key",
"api": "anthropic-messages",
"models": [
{
"id": "anthropic/nvidia_nim/nvidia/nemotron-3-super-120b-a12b",
"name": "Nemotron 120B (NVIDIA NIM)",
"contextWindow": 131072,
"maxTokens": 8192
}
]
}
}
},
"agents": {
"defaults": {
"model": "nvidia-nim/anthropic/nvidia_nim/nvidia/nemotron-3-super-120b-a12b",
"models": {
"nvidia-nim/anthropic/nvidia_nim/nvidia/nemotron-3-super-120b-a12b": {}
},
"workspace": "~/.openclaw/workspace",
"memorySearch": { "enabled": true },
"compaction": { "mode": "safeguard" },
"timeoutSeconds": 300,
"maxConcurrent": 4,
"subagents": { "maxConcurrent": 8 }
}
},
"tools": {
"web": {
"search": { "enabled": false },
"fetch": { "enabled": false }
}
},
"commands": {
"native": true,
"restart": true,
"ownerDisplay": "raw"
},
"session": {
"dmScope": "per-channel-peer"
},
"hooks": {
"enabled": true,
"token": "your-hook-secret-token",
"allowRequestSessionKey": false,
"allowedSessionKeyPrefixes": ["hook:"],
"internal": { "enabled": true }
},
"channels": {
"rocketchat": {
"accounts": {
"main": {
"enabled": true,
"serverUrl": "http://localhost:3000",
"auth": {
"mode": "token",
"userId": "your-bot-user-id",
"accessToken": "your-bot-access-token"
},
"transport": { "mode": "polling" },
"mentionNames": ["your-bot-username"]
}
}
}
},
"gateway": {
"port": 18789,
"mode": "local",
"bind": "loopback",
"auth": {
"mode": "token",
"token": "your-gateway-auth-token"
}
},
"plugins": {
"allow": ["memory-core", "rocketchat"],
"bundledDiscovery": "allowlist",
"load": {
"paths": ["./dist/index.js"]
},
"entries": {
"rocketchat": { "enabled": true }
}
}
}