-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.example.json
More file actions
123 lines (122 loc) · 2.78 KB
/
config.example.json
File metadata and controls
123 lines (122 loc) · 2.78 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"defaultProvider": "openai",
"apis": {
"openai": {
"apiKey": "",
"baseUrl": "https://api.openai.com/v1",
"defaultModel": "gpt-5"
},
"openaiCompatible": {
"apiKey": "",
"baseUrl": "",
"defaultModel": "gpt-5",
"requiresApiKey": false,
"referrer": "bibble"
},
"anthropic": {
"apiKey": "",
"baseUrl": "https://api.anthropic.com",
"defaultModel": "claude-sonnet-4-20250514"
},
"google": {
"apiKey": "",
"baseUrl": "https://generativelanguage.googleapis.com",
"defaultModel": "gemini-2.0-flash"
}
},
"ui": {
"colorOutput": true,
"useMarkdown": true,
"theme": "pinkPixel"
},
"mcpServers": [],
"chat": {
"saveHistory": true,
"maxHistoryItems": 50,
"userGuidelines": ""
},
"security": {
"defaultPolicy": "trusted",
"requireConfirmationGlobally": false,
"previewToolInputs": true,
"auditLogging": false,
"toolTimeout": 30000,
"sensitiveOperations": [
"execute_command",
"force_terminate",
"kill_process",
"move_file",
"delete_memory",
"delete_task",
"delete_subtask",
"delete_note",
"remove_todos",
"set_config_value"
],
"serverPolicies": {},
"allowedTools": {},
"blockedTools": {}
},
"models": [
{
"id": "gpt-5",
"provider": "openai",
"name": "GPT-5",
"maxCompletionTokens": 4096,
"temperature": 0.7,
"supportsTemperature": true,
"supportsThinking": true,
"thinkingLevel": "none",
"requiresMaxCompletionTokens": true
},
{
"id": "o3-pro",
"provider": "openai",
"name": "o3-pro",
"maxCompletionTokens": 4096,
"reasoningEffort": "medium",
"isReasoningModel": true,
"supportsTemperature": false,
"requiresMaxCompletionTokens": true
},
{
"id": "claude-3-7-sonnet-20250219",
"provider": "anthropic",
"name": "Claude 3.7 Sonnet",
"maxTokens": 20000,
"temperature": 0.7,
"topP": 0.9,
"topK": 40,
"supportsThinking": true,
"thinkingLevel": "medium",
"thinking": { "type": "enabled", "budget_tokens": 16000 }
}
],
"webSearch": {
"preferredEngine": "duckduckgo",
"bingApiKey": "",
"googleApiKey": "",
"googleSearchEngineId": "",
"braveApiKey": ""
},
"workspace": {
"enabled": true,
"showWelcomeMessage": true,
"showContextInChat": true,
"autoDetectOnStartup": true,
"cacheDuration": 300000,
"contextIndicators": true,
"customProjectTypes": {}
},
"timezone": {
"default": "auto"
},
"weather": {
"apiKey": "",
"defaultLocation": "",
"units": "metric",
"cacheMinutes": 10,
"rateLimitPerHour": 1000,
"requestTimeoutMs": 10000
}
}