-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathexample-config.json
More file actions
59 lines (59 loc) · 1.61 KB
/
Copy pathexample-config.json
File metadata and controls
59 lines (59 loc) · 1.61 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
{
"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
},
"session": {
"ownerLeaseSeconds": 30
}
},
"games": {
"factory": {
"id": "factory",
"name": "Example Game",
"launchMode": "DirectPath",
"target": "/path/to/factory/server.jar",
"workingDir": "/path/to/factory",
"args": ["-Xmx4G", "-Xms2G", "-jar", "server.jar", "nogui"],
"description": "FactorySim server with GABP bridge for AI control"
},
"adventure": {
"id": "adventure",
"name": "AdventureGame",
"launchMode": "SteamAppId",
"target": "123456",
"stopProcessName": "GameName.exe",
"description": "AdventureGame sample via Steam with GABP bridge"
},
"adventurearena": {
"id": "adventurearena",
"name": "AdventureArena Dedicated Server",
"launchMode": "CustomCommand",
"target": "adventurearena_server.exe -nographics -batchmode -name \"My GABS Server\" -port 2456 -world \"Dedicated\" -password \"mypassword\"",
"workingDir": "/path/to/adventurearena/server",
"stopProcessName": "adventurearena_server.exe",
"description": "AdventureArena dedicated server with custom launch parameters"
}
}
}