claims-env / app.py
akhiilll's picture
Deploy ClaimSense adjudication gym
1cfeb15 verified
raw
history blame contribute delete
304 Bytes
"""HuggingFace Spaces entrypoint.
Hugging Face Spaces looks for a top-level ``app`` symbol when running a
Docker SDK Space. We re-export the FastAPI app constructed in
``space_app.py`` (which adds the dashboard UI on top of the bare OpenEnv
endpoints).
"""
from space_app import app
__all__ = ["app"]