-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.example.json
More file actions
75 lines (75 loc) · 1.88 KB
/
Copy pathsettings.example.json
File metadata and controls
75 lines (75 loc) · 1.88 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
{
"development_mode": false,
"intermediate_updates": true,
"suspend_slack_notifications": false,
"suspend_task_interception": false,
"api_key": "REPLACE_ME",
"vector_memory": {
"enabled": true,
"qdrant_mode": "server",
"qdrant_host": "127.0.0.1",
"qdrant_port": 6333,
"qdrant_path": "/root/.openclaw/rmp/data/qdrant",
"collection_name": "rmp_memories",
"embedder_provider": "nvidia",
"embedder_model": "nvidia/nv-embed-v1",
"embedding_dims": 4096,
"semantic_recall_limit": 5
},
"telemetry": {
"enabled": true,
"service_name": "rmp",
"otlp_endpoint": "http://127.0.0.1:4318/v1/traces",
"console_export": false
},
"artifact_store": {
"enabled": true,
"root_path": "/root/.openclaw/rmp/data/artifacts"
},
"production": {
"scanner_auto_restart": false,
"scanner_managed_ids": [],
"slack_owner_user_id": "U0AELFYTLKS",
"alerting": {
"enabled": false,
"webhook_url": ""
}
},
"llm_quota": {
"provider": "nvidia",
"min_interval_sec": 5.0,
"max_wait_sec": 1800.0,
"max_concurrent": 3,
"cooldown_steps_sec": [
15,
30,
60,
120
]
},
"task_registry": {
"enabled": true,
"collection_name": "rmp_task_registry",
"intake_mode": "enforce",
"similarity_threshold": 0.72,
"intake_confidence_threshold": 65,
"intake_cache_sec": 60,
"intake_llm_timeout_sec": 20,
"intake_model": "nvidia/deepseek-ai/deepseek-v4-flash-0731",
"intake_model_fallbacks": [
"nvidia/minimaxai/minimax-m3",
"nvidia/z-ai/glm-5.2"
],
"intake_vector_deadline_sec": 10,
"qdrant_query_timeout_sec": 8,
"backfill_days": 90,
"rework_max_attempts": 3,
"temporal_half_life_days": 30,
"recurrence_intervals": {
"heartbeat": 25,
"health_canary": 55,
"memory_canary": 360,
"cron_default": 55
}
}
}