Any tips on how to have a flow run return the flow_run information `get_run_context.flow_run`before the flow ends inside a fastapi route?
I am able to return right away a 200 in the route and have the flow run in the background with
fastapi.BackgroundTasks
but i can't find a way to return the flow_run_id as the route response and also have the flow run in the background. Thank you.