-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
44 lines (44 loc) · 1018 Bytes
/
config.example.json
File metadata and controls
44 lines (44 loc) · 1018 Bytes
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
{
"server": {
"name": "TinyBrain Memory Storage",
"version": "1.0.0",
"description": "Security-focused LLM memory storage MCP server"
},
"database": {
"path": "~/.tinybrain/memory.db",
"backup_enabled": true,
"backup_interval": "24h",
"max_backups": 7
},
"logging": {
"level": "info",
"format": "json",
"output": "stderr",
"report_caller": true,
"report_timestamp": true
},
"search": {
"default_limit": 20,
"max_limit": 100,
"default_search_type": "semantic",
"enable_fuzzy_search": true
},
"memory": {
"default_priority": 5,
"default_confidence": 0.5,
"auto_categorize": true,
"max_content_length": 10000
},
"security": {
"enable_foreign_keys": true,
"enable_secure_delete": false,
"connection_timeout": "30s",
"max_connections": 1
},
"features": {
"enable_relationships": true,
"enable_context_snapshots": true,
"enable_task_progress": true,
"enable_search_history": true
}
}