File size: 232 Bytes
a001ee9
fada25c
cd7fdea
 
a001ee9
 
 
 
1
2
3
4
5
6
7
8
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")