From e8e13ee8d249bfb778cb525940e31cdd0f30aabe Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Fri, 26 Jun 2026 23:01:49 +0800 Subject: [PATCH] switch back to 16 parallel workers for download on henky request --- koboldcpp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koboldcpp.py b/koboldcpp.py index 77f68e66b..40f1ad394 100644 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -10518,7 +10518,7 @@ def resolve_huggingface_xet_url(input_url): return input_url # resolved_host = urllib.parse.urlparse(resolved_url).netloc.lower() if ("xet-bridge" in resolved_url) and resolved_url != input_url: - print(f"Resolved Hugging Face xet URL to {resolved_url}", flush=True) + utfprint(f"Resolved Hugging Face xet URL to {resolved_url}", 0) return resolved_url return input_url @@ -10566,7 +10566,7 @@ def downloader_internal(input_url, output_filename, capture_output, min_file_siz if shutil.which("aria2c") is not None: aria2_candidates.append(("aria2c", "aria2c")) aria2_args = [ - "-x", "8", "-s", "8", + "-x", "16", "-s", "16", "--summary-interval=10", "--console-log-level=error", "--log-level=error", "--download-result=default", "--continue=true", "--allow-overwrite=true", "--file-allocation=none", "--max-tries=3", "--retry-wait=5",