MiFactory / host.py
shengxio's picture
Upload 13 files
be0ac47 verified
raw
history blame contribute delete
No virus
141 Bytes
import gradio as gr
from fastapi import FastAPI
from app import iface
app = FastAPI()
app = gr.mount_gradio_app(app,iface,path="/")