fix(download-manager): temporarily disable delay to speed up downloads

This commit is contained in:
Will Miao
2025-09-02 22:36:36 +08:00
parent 2a67cec16b
commit ca6f45b359

View File

@@ -68,6 +68,7 @@ class DownloadManager:
optimize = data.get('optimize', True)
model_types = data.get('model_types', ['lora', 'checkpoint'])
delay = float(data.get('delay', 0.2)) # Default to 0.2 seconds
delay = 0 # Temporary: Disable delay to speed up downloads
if not output_dir:
return web.json_response({