omni-sfm / app.py
vincentqyw
init
6d69218
raw
history blame contribute delete
220 Bytes
from src.gradio_ui import OmniConverterUI
if __name__ == "__main__":
ui = OmniConverterUI()
app = ui.create_interface()
app.queue().launch(
server_name="0.0.0.0", server_port=7860, share=False
)