forked from Atomlaunch/engram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
38 lines (38 loc) · 1.3 KB
/
config.json.example
File metadata and controls
38 lines (38 loc) · 1.3 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
{
"model": "grok-3-mini-fast",
"ingest_interval_minutes": 5,
"max_concurrent_chunks": 10,
"sessions_dir": "~/.openclaw/agents",
"memory_dir": "~/clawd/memory",
"notes": {
"model": "xAI model to use for extraction: grok-3-mini-fast (default), grok-3-fast, etc.",
"xai_api_key": "Set here or via XAI_API_KEY env var. If using OpenClaw, auto-detected from openclaw.json.",
"ingest_interval_minutes": "How often the cron runs. Change this, then run: engram/update-cron.sh",
"max_concurrent_chunks": "Parallel API calls per file (higher = faster, more API usage)"
},
"main_agent_id": "main",
"agent_workspaces": {
"loopfans": "~/.openclaw/workspace-loopfans/memory",
"sillyfarms": "~/.openclaw/workspace-sillyfarms/memory"
},
"ingest_workers": 10,
"context_engine": {
"workspace_root": "/home/youruser/clawd",
"engram_dir": "/home/youruser/clawd/engram",
"python_bin": "/home/youruser/clawd/.venv-memory/bin/python",
"agents_dir": "/home/youruser/.openclaw/agents",
"pinned_injection": {
"enabled": true,
"max_pinned": 5,
"min_importance": 0.9,
"source_types": ["live_context"]
}
},
"backend": "neo4j",
"neo4j": {
"uri": "bolt://localhost:7687",
"user": "neo4j",
"password": "CHANGE_ME"
},
"xai_api_key": "CHANGE_ME"
}