Mystery_Arena / api_app.py
Elfsong's picture
Deploy MysteryArena full-stack Space
7fabe61 verified
Raw
History Blame Contribute Delete
225 Bytes
from __future__ import annotations
import os
from arena.api import create_app
app = create_app(
arena_root=os.environ.get("ARENA_ROOT", "/data/arena/results"),
env_file=os.environ.get("ARENA_ENV_FILE") or None,
)