pubHealthLLM / app.py
mike-malloy's picture
Initial deployment: pubHealthLLM public health decision intelligence app
d914db6
Raw
History Blame Contribute Delete
433 Bytes
"""
HuggingFace Spaces entry point for pubHealthLLM.
HuggingFace Spaces expects the Gradio app to be in a file called app.py
at the repo root and to be served on 0.0.0.0:7860.
This file is a thin wrapper — all application logic lives in
pubhealth_llm/app/gradio_app.py.
"""
from pubhealth_llm.app.gradio_app import build_app
app = build_app()
if __name__ == "__main__":
app.launch(server_name="0.0.0.0", server_port=7860)