gradio_fastapi / main.py
lanbogao's picture
Rename app.py to main.py
ed11184
raw
history blame
No virus
377 Bytes
from fastapi import FastAPI
import gradio as gr
CUSTOM_PATH = "/gradio"
app = FastAPI()
@app.get("/")
def read_main():
return {"message": "This is your main app"}
io = gr.Interface(lambda x: "Hello, " + x + "!", "textbox", "textbox")
gradio_app = gr.routes.App.create_app(io)
app.mount(CUSTOM_PATH, gradio_app)
#app = gr.mount_gradio_app(app, io, path=CUSTOM_PATH)