From ca578b93de29b83b77bcd6389c9589996c6f3555 Mon Sep 17 00:00:00 2001 From: Arseniy Romenskiy Date: Sun, 12 Apr 2026 02:11:19 +0300 Subject: [PATCH] Fix HuggingFace URL to use /resolve/main/ instead of /blob/main/ --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index b40ee9d..5102cdd 100644 --- a/js/app.js +++ b/js/app.js @@ -570,7 +570,7 @@ : 'Fetching config from HuggingFace...'; loadingIndicator.style.display = 'block'; - const url = `https://huggingface.co/${modelName}/blob/main/config.json`; + const url = `https://huggingface.co/${modelName}/resolve/main/config.json`; try { const response = await fetch(url);