CareLoop / app.py
gsingh24's picture
Create app.py
503805a verified
raw
history blame contribute delete
337 Bytes
# app.py - Entry point for Hugging Face Space
# This file imports and launches the Gradio app from gradio_app.py
# Import the demo app from gradio_app.py
from gradio_app import demo
# Launch the app when this file is run
if __name__ == "__main__":
# Using a simplified launch configuration for Hugging Face Spaces
demo.launch()