forked from OpenSenseNova/MemSense
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
29 lines (29 loc) · 843 Bytes
/
Copy pathopenclaw.plugin.json
File metadata and controls
29 lines (29 loc) · 843 Bytes
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
{
"id": "memsense",
"kind": "memory",
"contracts": {
"tools": ["memory_search", "memory_fetch_recent"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": { "type": "boolean", "default": true },
"serviceMode": {
"type": "string",
"enum": ["auto", "external", "local"],
"default": "auto"
},
"localMode": { "type": "boolean" },
"serviceUrl": { "type": "string" },
"tenantId": { "type": "string", "default": "default" },
"scope": {
"type": "string",
"enum": ["user", "team", "org", "task"],
"default": "user"
},
"timeoutMs": { "type": "integer", "minimum": 50, "default": 180 },
"maxTopK": { "type": "integer", "minimum": 1, "maximum": 20, "default": 8 }
}
}
}