-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugins.toml
More file actions
31 lines (24 loc) · 771 Bytes
/
plugins.toml
File metadata and controls
31 lines (24 loc) · 771 Bytes
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
# Plugin Configuration
# ====================
# Plugins run as Docker containers managed by Docker Compose.
# URLs are configured via environment variables (e.g., GAMBIT_URL).
#
# Plugin endpoints: GET /health, GET /info, POST /analyze, POST /parse/{format}
[settings]
# Maximum seconds to wait for a plugin container to become healthy
# PyCID plugin takes ~30s to import libraries on first load
startup_timeout_seconds = 60
# Plugin Definitions
# ------------------
# Each [[plugins]] entry defines one plugin service.
# URLs come from environment variables: {NAME}_URL (e.g., GAMBIT_URL)
[[plugins]]
name = "gambit"
[[plugins]]
name = "pycid"
[[plugins]]
name = "vegas"
[[plugins]]
name = "egttools"
[[plugins]]
name = "openspiel"