-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
64 lines (64 loc) · 1.37 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
64 lines (64 loc) · 1.37 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
{
"id": "openclaw-exabase-memory",
"name": "Exabase Memory",
"description": "Long-term memory for OpenClaw backed by Exabase M-1.",
"kind": "memory",
"activation": {
"onStartup": true
},
"contracts": {
"tools": [
"exabase_memory_store",
"exabase_memory_search",
"exabase_memory_get",
"exabase_memory_update",
"exabase_memory_delete"
]
},
"uiHints": {
"apiKey": {
"label": "Exabase API key",
"placeholder": "exabase_...",
"sensitive": true,
"help": "API key for https://api.exabase.io"
},
"baseId": {
"label": "Base ID",
"placeholder": "optional",
"advanced": true,
"help": "Optional X-Exabase-Base-Id header value."
},
"recallLimit": {
"label": "Recall limit",
"placeholder": "6",
"advanced": true,
"help": "Maximum memories injected before a turn."
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": "string"
},
"baseId": {
"type": "string"
},
"autoRecall": {
"type": "boolean"
},
"autoCapture": {
"type": "boolean"
},
"recallLimit": {
"type": "number",
"minimum": 1,
"maximum": 20
},
"captureInfer": {
"type": "boolean"
}
}
}
}