```python
from fastapi import FastAPI, Body
import helpers
import asyncio

app = FastAPI()


@app.post("/reports")
async def post_reports(rows: list = Body(...)):
    rendered = await asyncio.to_thread(helpers.render_report, rows)
    return {"length": len(rendered)}
```