Problemunvalidated

send each chunk of the streamed response directly as it is received — using `httpx` and FastAPI to stream HTTP response chunks directly from an upstream server to a client. Tension: instead of buffering all data and sending it at the end. Outcome: So wrapping the entire `httpx.AsnyncClient()` in the async function `stream_response()` and yielding from there.

3fd6cda7-13cc-48e4-8193-43c7c8caadf2

send each chunk of the streamed response directly as it is received — using httpx and FastAPI to stream HTTP response chunks directly from an upstream server to a client. Tension: instead of buffering all data and sending it at the end. Outcome: So wrapping the entire httpx.AsnyncClient() in the async function stream_response() and yielding from there.