Update app.py
Browse files
app.py
CHANGED
|
@@ -84,7 +84,7 @@ def proxy(path):
|
|
| 84 |
|
| 85 |
# --- 5. Stream the Response Back to the Client ---
|
| 86 |
def generate():
|
| 87 |
-
for chunk in response.iter_content(chunk_size=
|
| 88 |
yield chunk
|
| 89 |
|
| 90 |
# Create a Flask response object
|
|
|
|
| 84 |
|
| 85 |
# --- 5. Stream the Response Back to the Client ---
|
| 86 |
def generate():
|
| 87 |
+
for chunk in response.iter_content(chunk_size=1):
|
| 88 |
yield chunk
|
| 89 |
|
| 90 |
# Create a Flask response object
|