a001ee9
fada25c
cd7fdea
a001ee9
|
|
from fastapi import FastAPI
import gradio as gr
app = FastAPI()
@app.get("/")
def read_main():
return {"message": "This is your main app"}
io = gr.ChatInterface(respond_to_chat)
app = gr.mount_gradio_app(app, io, path="/gradio") |