MarcosFRGames commited on
Commit
d7a810a
·
verified ·
1 Parent(s): 857968a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -83,7 +83,7 @@ class LLMManager:
83
 
84
  downloaded = 0
85
  with open(temp_path, 'wb') as f:
86
- for chunk in response.iter_content(chunk_size=8192):
87
  if chunk:
88
  f.write(chunk)
89
  downloaded += len(chunk)
 
83
 
84
  downloaded = 0
85
  with open(temp_path, 'wb') as f:
86
+ for chunk in response.iter_content(chunk_size=32768):
87
  if chunk:
88
  f.write(chunk)
89
  downloaded += len(chunk)