Spaces:
Runtime error
Runtime error
from fastapi import FastAPI | |
import gradio as gr | |
app = FastAPI() | |
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") |