-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
102 lines (102 loc) · 2.17 KB
/
config.json.example
File metadata and controls
102 lines (102 loc) · 2.17 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"timezone": "Europe/Berlin",
"maxTurns": 5,
"cmds": [
{
"name": "exec",
"enabled": true,
"options": {
"blacklist": ["rm -rf", "sudo", "shutdown"]
}
}
],
"models": {
"model": "ollama/llama3.2",
"providers": {
"ollama": {
"baseUrl": "http://localhost:11434/v1",
"apiKey": "ollama",
"type": "openai",
"models": [
{
"id": "gemma3:4b",
"model": "gemma3:4b",
"name": "Gemma 3 4B",
"tool": false,
"input": ["text"],
"contextWindow": 8192,
"maxTokens": 4096
},
{
"id": "llama3",
"model": "llama3.2",
"name": "Llama 3.2",
"input": ["text"],
"sampling": {
"temperature": 0.7,
"top_p": 0.9,
"repetition_penalty": 1.1
},
"contextWindow": 8192,
"maxTokens": 4096
}
]
}
}
},
"session": {
"historyMode": "db",
"historyLimit": 20,
"summarize": true,
"summaryModel": "ollama/gemma3:4b",
"summaryStrategy": "rolling"
},
"messaging": [
{
"provider": "telegram",
"telegram": {
"enabled": true,
"botToken": "${TELEGRAM_BOT_TOKEN}",
"allowedUsers": ["your_username"]
}
}
],
"server": {
"port": 8080,
"authToken": "${SERVER_TOKEN}"
},
"websearch": {
"provider": "searxng",
"providers": {
"searxng": {
"name": "My SearxNG",
"type": "searxng",
"endpoint": "https://searxng.url",
"maxResults": 5
},
"brave": {
"name": "Brave Search",
"type": "brave",
"apiKey": "${BRAVE_API_KEY}",
"maxResults": 5,
"freeTier": {
"enabled": true,
"fallback": "searxng"
}
},
"perplexity": {
"name": "Perplexity",
"type": "perplexity",
"apiKey": "${PERPLEXITY_API_KEY}",
"maxResults": 5,
"fallback": "searxng"
}
}
},
"storage": {
"tempDir": "./temp"
},
"skills": {
"injectFullSkillText": false
}
}