MiFactory / host.py
shengxiong's picture
Revise the app hosting/serving solution as per
eec808a
raw
history blame contribute delete
134 Bytes
import gradio as gr
from fastapi import FastAPI
from app import iface
app = FastAPI()
app = gr.mount_gradio_app(app,iface,path="/")