-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathexample-config.json
More file actions
56 lines (56 loc) · 1.52 KB
/
example-config.json
File metadata and controls
56 lines (56 loc) · 1.52 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
{
"version": "1.0",
"apiKey": "your-secret-api-key-here",
"toolNormalization": {
"enableOpenAINormalization": true,
"maxToolNameLength": 64,
"preserveOriginalName": true
},
"stripOutputSchema": false,
"portRanges": {
"customRanges": [
{
"min": 8000,
"max": 8999
},
{
"min": 9000,
"max": 9999
}
]
},
"timeouts": {
"startup": {
"processStartSeconds": 10,
"gabpConnectSeconds": 60
}
},
"games": {
"minecraft": {
"id": "minecraft",
"name": "Minecraft Server",
"launchMode": "DirectPath",
"target": "/path/to/minecraft/server.jar",
"workingDir": "/path/to/minecraft",
"args": ["-Xmx4G", "-Xms2G", "-jar", "server.jar", "nogui"],
"description": "Minecraft server with GABP mod for AI control"
},
"rimworld": {
"id": "rimworld",
"name": "RimWorld",
"launchMode": "SteamAppId",
"target": "294100",
"stopProcessName": "RimWorldWin64.exe",
"description": "RimWorld colony simulation via Steam with GABP mod"
},
"valheim": {
"id": "valheim",
"name": "Valheim Dedicated Server",
"launchMode": "CustomCommand",
"target": "valheim_server.exe -nographics -batchmode -name \"My GABS Server\" -port 2456 -world \"Dedicated\" -password \"mypassword\"",
"workingDir": "/path/to/valheim/server",
"stopProcessName": "valheim_server.exe",
"description": "Valheim dedicated server with custom launch parameters"
}
}
}