Concept Flow - Background file processing
Client sends file upload request
FastAPI receives request
Start background task to process file
Return immediate response to client
Background task runs separately
Process file (e.g., save, analyze)
Background task completes silently
The server accepts a file upload, starts a background task to process it, immediately responds to the client, and processes the file separately without blocking.