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(share=True) | |
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(share=True) | |