docs: add sample config and verification guide

This commit is contained in:
2026-02-25 10:37:12 +00:00
parent 7728892d15
commit e020f1f026
2 changed files with 58 additions and 0 deletions

28
docs/CONFIG.example.json Normal file
View File

@@ -0,0 +1,28 @@
{
"plugins": {
"load": {
"paths": ["/path/to/WhisperGate/plugin"]
},
"entries": {
"whispergate": {
"enabled": true,
"config": {
"enabled": true,
"discordOnly": true,
"bypassUserIds": ["561921120408698910"],
"endSymbols": ["。", "", "", ".", "!", "?"],
"noReplyProvider": "openai",
"noReplyModel": "whispergate-no-reply-v1"
}
}
}
},
"models": {
"providers": {
"openai": {
"apiKey": "sk-xxxx",
"baseURL": "http://127.0.0.1:8787/v1"
}
}
}
}