| """ | |
| Hugging Face Spaces entry point for the RLEaaS · RL-ADA Arena dashboard. | |
| Default = FIXTURE mode (replays recorded arena trajectories, no GPU needed). | |
| Set the Space secret/variable RLADA_LIVE=1 to call live vLLM models instead | |
| (only works if DA/CA vLLM endpoints are reachable from the Space). | |
| """ | |
| import os | |
| import sys | |
| sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) | |
| from ui.dashboard import demo, THEME, CUSTOM_CSS, DEFAULT_DARK_JS | |
| demo.launch(theme=THEME, css=CUSTOM_CSS, js=DEFAULT_DARK_JS) | |