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

app = FastAPI()

@app.post("/orders", status_code=201)
async def create_order(order: dict):
    # Run the blocking helper in a thread to avoid blocking the event loop.
    processed_order = await asyncio.to_thread(helpers.process_order, order)
    return processed_order
```