yangtb24 commited on
Commit
594c42e
·
verified ·
1 Parent(s): cae704c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=100000):
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=1000000):
407
  if chunk:
408
  if first_chunk_time is None:
409
  first_chunk_time = time.time()