-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
47 lines (47 loc) · 1004 Bytes
/
config.json
File metadata and controls
47 lines (47 loc) · 1004 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
45
46
47
{
"default": {
"provider": "llamacpp",
"model": "default",
"base_url": "http://localhost:8080",
"max_tokens": 8192,
"max_messages": 0,
"compaction_strategy": "truncate",
"compaction_threshold": 0,
"workdir": "~/.micro-agent/workdir",
"log_file": "~/.micro-agent/ua.log",
"shell_exec": false
},
"llamacpp": {
"host": "127.0.0.1",
"port": 8080
},
"memory": {
"backend": "milvus",
"path": "~/.micro-agent/mem.db",
"embed": true,
"milvus_addr": "localhost:19530",
"milvus_username": "",
"milvus_password": "",
"milvus_db": "",
"milvus_collection": "memories"
},
"channels": {
"telegram": {
"token": "",
"chat_id": 0
},
"cron": {
"enabled": false,
"interval": "1m",
"heartbeat_file": "HEARTBEAT.md"
},
"http": {
"enabled": false,
"listen": "127.0.0.1:8765",
"token": ""
}
},
"tools": {
"browserless_url": "http://localhost:3000"
}
}