-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
67 lines (67 loc) · 1.71 KB
/
openclaw.plugin.json
File metadata and controls
67 lines (67 loc) · 1.71 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
65
66
67
{
"id": "engram",
"kind": "memory",
"uiHints": {
"embedding.apiKey": {
"label": "OpenAI API Key",
"sensitive": true,
"placeholder": "sk-proj-...",
"help": "API key for OpenAI embeddings (or use ${OPENAI_API_KEY})"
},
"embedding.model": {
"label": "Embedding Model",
"placeholder": "text-embedding-3-small",
"help": "OpenAI embedding model to use"
},
"lanceDbPath": {
"label": "LanceDB Path",
"placeholder": "~/.openclaw/memory/lancedb",
"advanced": true
},
"sqlitePath": {
"label": "SQLite Path",
"placeholder": "~/.openclaw/memory/facts.db",
"advanced": true
},
"autoCapture": {
"label": "Auto-Capture",
"help": "Automatically capture important information from conversations"
},
"autoRecall": {
"label": "Auto-Recall",
"help": "Automatically inject relevant memories into context"
}
},
"contracts": {
"tools": [
"memory_recall",
"memory_store",
"memory_forget",
"memory_checkpoint",
"memory_prune"
]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"embedding": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": { "type": "string" },
"model": {
"type": "string",
"enum": ["text-embedding-3-small", "text-embedding-3-large"]
}
},
"required": ["apiKey"]
},
"lanceDbPath": { "type": "string" },
"sqlitePath": { "type": "string" },
"autoCapture": { "type": "boolean" },
"autoRecall": { "type": "boolean" }
},
"required": ["embedding"]
}
}