Spaces:
Runtime error
Runtime error
from fastapi import FastAPI | |
from chainlit.utils import mount_chainlit | |
app = FastAPI() | |
def read_main(): | |
return {"message": "Hello World from main app"} | |
mount_chainlit(app=app, target="app.py", path="/") | |