-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnine1bot.config.jsonc.example
More file actions
75 lines (75 loc) · 1.5 KB
/
Copy pathnine1bot.config.jsonc.example
File metadata and controls
75 lines (75 loc) · 1.5 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
{
"$schema": "https://nine1bot.com/config.schema.json",
"server": {
"port": 4096,
"hostname": "127.0.0.1",
"openBrowser": true
},
"auth": {
"enabled": false,
"password": ""
},
"tunnel": {
"enabled": false,
"provider": "ngrok",
"ngrok": {
"authToken": ""
},
"natapp": {
"authToken": ""
}
},
"isolation": {
"disableGlobalConfig": false,
"disableProjectConfig": false
},
"provider": {},
"mcp": {
// "remote-docs": {
// "type": "remote",
// "url": "https://mcp.example.com/http",
// "oauth": {
// "clientId": "your-client-id",
// "clientSecret": "your-client-secret",
// "scope": "read write"
// }
// }
},
"browser": {
"enabled": false,
"cdpPort": 9222,
"autoLaunch": true,
"headless": false
},
"feishu": {
"enabled": false,
"mode": "websocket",
"appId": "cli_xxx",
"appSecret": "xxx",
"verificationToken": "",
"encryptKey": ""
},
"customProviders": {
"my-openai": {
"name": "My OpenAI Compatible",
"protocol": "openai",
"baseURL": "https://example.com/v1",
"models": [
{
"id": "gpt-4o-mini"
}
]
},
"my-anthropic": {
"name": "My Anthropic Compatible",
"protocol": "anthropic",
"baseURL": "https://example.com/anthropic",
"models": [
{
"id": "claude-3-5-sonnet-latest"
}
]
}
},
"model": "my-openai/gpt-4o-mini"
}