Update app.py
Browse files
app.py
CHANGED
@@ -403,7 +403,7 @@ def handsome_chat_completions():
|
|
403 |
content_accumulated = ""
|
404 |
first_reasoning_chunk = True
|
405 |
|
406 |
-
for chunk in response.iter_content(chunk_size=
|
407 |
if chunk:
|
408 |
if first_chunk_time is None:
|
409 |
first_chunk_time = time.time()
|
|
|
403 |
content_accumulated = ""
|
404 |
first_reasoning_chunk = True
|
405 |
|
406 |
+
for chunk in response.iter_content(chunk_size=10000000000):
|
407 |
if chunk:
|
408 |
if first_chunk_time is None:
|
409 |
first_chunk_time = time.time()
|