Hi there, I have a fastapi app with 2 routes, one for rendering an html page and one for serving a request. I am using Jinja2 for templating.Example of one of the route:@router.get("/", response_class=HTMLResponse)
async def read_root(request: Reques...