SRUNU / app.py
Srinivasulu kethanaboina
Update app.py
a001ee9 verified
raw
history blame
232 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.ChatInterface(respond_to_chat)
app = gr.mount_gradio_app(app, io, path="/gradio")