Files
Dirigent/docs/CONFIG.example.json

61 lines
1.5 KiB
JSON

{
"plugins": {
"load": {
"paths": ["/path/to/Dirigent/dist/dirigent"]
},
"entries": {
"dirigent": {
"enabled": true,
"config": {
"enabled": true,
"discordOnly": true,
"listMode": "human-list",
"humanList": ["561921120408698910"],
"agentList": [],
"endSymbols": ["🔚"],
"schedulingIdentifier": "➡️",
"channelPoliciesFile": "~/.openclaw/dirigent-channel-policies.json",
"noReplyProvider": "dirigentway",
"noReplyModel": "no-reply",
"enableDiscordControlTool": true,
"enableDirigentPolicyTool": true,
"enableDebugLogs": false,
"debugLogChannelIds": [],
"discordControlApiToken": "<DISCORD_CONTROL_AUTH_TOKEN>",
"discordControlCallerId": "agent-main"
}
}
}
},
"models": {
"providers": {
"dirigentway": {
"apiKey": "<NO_REPLY_API_TOKEN_OR_PLACEHOLDER>",
"baseUrl": "http://127.0.0.1:8787/v1",
"api": "openai-completions",
"models": [
{
"id": "no-reply",
"name": "No Reply",
"reasoning": false,
"input": ["text"],
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
"contextWindow": 200000,
"maxTokens": 8192
}
]
}
}
},
"agents": {
"list": [
{
"id": "main",
"tools": {
"allow": ["dirigent"]
}
}
]
}
}