-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.example.json
More file actions
118 lines (118 loc) · 2.32 KB
/
config.example.json
File metadata and controls
118 lines (118 loc) · 2.32 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
{
"agents": {
"defaults": {
"workspace": "~/.ferrum-bot/workspace",
"model": "anthropic/claude-opus-4-5",
"max_tokens": 8192,
"temperature": 0.7,
"max_tool_iterations": 20
}
},
"channels": {
"whatsapp": {
"enabled": false,
"bridge_url": "ws://localhost:3001",
"allow_from": [],
"cloud_api": {
"access_token": "",
"phone_number_id": "",
"verify_token": "",
"app_secret": ""
}
},
"telegram": {
"enabled": false,
"token": "",
"allow_from": [],
"proxy": null
},
"discord": {
"enabled": false,
"token": "",
"allow_from": [],
"gateway_url": "wss://gateway.discord.gg/?v=10&encoding=json",
"intents": 37377
},
"feishu": {
"enabled": false,
"app_id": "",
"app_secret": "",
"encrypt_key": "",
"verification_token": "",
"allow_from": []
}
},
"providers": {
"anthropic": {
"api_key": "sk-ant-api03-xxxx",
"api_base": null,
"extra_headers": null
},
"openai": {
"api_key": "sk-xxxx",
"api_base": null,
"extra_headers": null
},
"openrouter": {
"api_key": "sk-or-v1-xxxx",
"api_base": null,
"extra_headers": null
},
"deepseek": {
"api_key": "sk-xxxx",
"api_base": null,
"extra_headers": null
},
"groq": {
"api_key": "gsk_xxxx",
"api_base": null,
"extra_headers": null
},
"zhipu": {
"api_key": "",
"api_base": null,
"extra_headers": null
},
"dashscope": {
"api_key": "",
"api_base": null,
"extra_headers": null
},
"vllm": {
"api_key": "",
"api_base": "http://localhost:8000/v1",
"extra_headers": null
},
"gemini": {
"api_key": "",
"api_base": null,
"extra_headers": null
},
"moonshot": {
"api_key": "",
"api_base": null,
"extra_headers": null
},
"aihubmix": {
"api_key": "",
"api_base": null,
"extra_headers": null
}
},
"gateway": {
"host": "0.0.0.0",
"port": 18790
},
"tools": {
"web": {
"search": {
"api_key": "",
"max_results": 5
}
},
"exec": {
"timeout": 60
},
"restrict_to_workspace": true
}
}