import gradio as gr

from interface import create_interface

gr.close_all()

demo = create_interface()

if __name__ == "__main__":
    demo.launch()