nhosseini's picture
create gradio_app.py
08fcff6 verified
raw
history blame
177 Bytes
from app import main_interface
# This will launch the Gradio app by calling the `main_interface` function
demo = main_interface()
if __name__ == "__main__":
demo.launch()