File size: 177 Bytes
08fcff6 |
1 2 3 4 5 6 7 8 |
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()
|
08fcff6 |
1 2 3 4 5 6 7 8 |
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()
|