hf-pr-agent / app2.py
Gianpaolo Macario
feat: add app2.py
155b533
raw
history blame
264 Bytes
from fastapi import FastAPI
import gradio as gr
app = FastAPI()
@app.get("/")
def read_main():
return {"message": "This is your main app"}
io = gr.Interface(lambda x: "Hello, " + x + "!", "textbox", "textbox")
app = gr.mount_gradio_app(app, io, path="/gradio")