forked from openclaw/openclaw
-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Summary
当我将所有checkpoints设置为ruleDetector的时候,让本地LLM分析一个excel file,llm始终返回权限不足,无法读取本地文件。
openclaw.json配置如下:
"guardclaw": {
"enabled": true,
"config": {
"privacy": {
"enabled": true,
"checkpoints": {
"onUserMessage": [
"ruleDetector"
],
"onToolCallProposed": [
"ruleDetector"
],
"onToolCallExecuted": [
"ruleDetector"
]
},
"rules": {
"keywords": {
"S3": ["privacy"]
}
},
"localModel": {
"enabled": true,
"provider": "openai",
"model": "gpt-oss-20b-GGUF",
"endpoint": "http://127.0.0.1:8910/v1"
},
如上图所示,当命中**privacy** keywords的时候,路由到本地大模型,但是本地模型回复(权限不足,无法读取这个文件)。
请问,这是一个合理的feature还是一个Bug。
## Steps to reproduce
Expected behavior
What did you expect to happen?
Actual behavior
What actually happened?
Environment
- Clawdbot version:
- OS:
- Install method (pnpm/npx/docker/etc):
Logs or screenshots
Paste relevant logs or add screenshots (redact secrets).
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working