-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCONFIG.example.json
More file actions
39 lines (34 loc) · 1.1 KB
/
CONFIG.example.json
File metadata and controls
39 lines (34 loc) · 1.1 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
{
"_readme": "Copy the 'plugins' section below into your ~/.openclaw/openclaw.json",
"plugins": {
"allow": ["agent-smart-memo"],
"slots": {
"memory": "agent-smart-memo"
},
"entries": {
"agent-smart-memo": {
"enabled": true,
"config": {
"qdrantHost": "localhost",
"qdrantPort": 6333,
"qdrantCollection": "openclaw_memory",
"llmBaseUrl": "https://api.openai.com/v1",
"llmApiKey": "sk-your-api-key-here",
"llmModel": "gpt-4o-mini",
"embedBaseUrl": "http://localhost:11434",
"embedBackend": "ollama",
"embedModel": "mxbai-embed-large",
"embedDimensions": 1024,
"slotDbDir": "/Users/mrcagents/.openclaw/agent-memo",
"autoCaptureEnabled": true,
"autoCaptureMinConfidence": 0.7,
"contextWindowMaxTokens": 12000,
"summarizeEveryActions": 6,
"slotCategories": ["profile", "preferences", "project", "environment", "custom"],
"maxSlots": 500,
"injectStateTokenBudget": 500
}
}
}
}
}