File size: 146 Bytes
0f77c21
 
 
 
 
 
 
1
2
3
4
5
6
7
from fastapi import FastAPI
import gradio as gr
import app as gradio_app

app = FastAPI()

app = gr.mount_gradio_app(app, gradio_app.ui, path="/")