-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugins.bamdra-memory.suite.merge.json
More file actions
77 lines (77 loc) · 2.01 KB
/
Copy pathopenclaw.plugins.bamdra-memory.suite.merge.json
File metadata and controls
77 lines (77 loc) · 2.01 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
68
69
70
71
72
73
74
75
76
77
{
"plugins": {
"enabled": true,
"allow": [
"bamdra-openclaw-memory",
"bamdra-user-bind",
"bamdra-memory-vector"
],
"deny": [
"memory-core",
"memory-lancedb"
],
"load": {
"paths": [
"~/.openclaw/extensions/bamdra-openclaw-memory",
"~/.openclaw/extensions/bamdra-user-bind",
"~/.openclaw/extensions/bamdra-memory-vector"
]
},
"slots": {
"memory": "bamdra-openclaw-memory",
"contextEngine": "bamdra-openclaw-memory"
},
"entries": {
"bamdra-openclaw-memory": {
"enabled": true,
"config": {
"enabled": true,
"store": {
"provider": "sqlite",
"path": "~/.openclaw/memory/main.sqlite"
},
"cache": {
"provider": "memory",
"maxSessions": 128,
"maxTopicsPerSession": 64,
"maxFacts": 2048
},
"contextAssembly": {
"recentTurns": 6,
"includeTopicShortSummary": true,
"includeOpenLoops": true,
"alwaysFactLimit": 12,
"topicFactLimit": 16
}
}
},
"bamdra-user-bind": {
"enabled": true,
"config": {
"enabled": true,
"localStorePath": "~/.openclaw/data/bamdra-user-bind",
"exportPath": "~/.openclaw/data/bamdra-user-bind/exports",
"cacheTtlMs": 1800000,
"adminAgents": []
}
},
"bamdra-memory-vector": {
"enabled": true,
"config": {
"enabled": true,
"markdownRoot": "~/.openclaw/memory/vector/markdown",
"privateMarkdownRoot": "~/.openclaw/memory/vector/markdown/private",
"sharedMarkdownRoot": "~/.openclaw/memory/vector/markdown/shared",
"indexPath": "~/.openclaw/memory/vector/index.json",
"dimensions": 64
}
},
"memory-core": {
"enabled": false
},
"memory-lancedb": {
"enabled": false
}
}
}
}