fix: skip download progress polling for exported GGUF models (#4709)

* fix: skip download progress polling for exported GGUF models

* fix: revert isLocalGgufDir change — exported GGUFs are file paths, not dirs

* fix: set isDownloaded true for all adapters in LoraModelPicker
This commit is contained in:
Roland Tannous 2026-03-31 07:21:23 +04:00 committed by GitHub
commit 7f353acfd4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1003,6 +1003,7 @@ export function LoraModelPicker({
onSelect(adapter.id, {
source: isLocal ? "local" : isExported ? "exported" : "lora",
isLora: !isLocal && !isMerged && !isGguf,
isDownloaded: true,
});
}
}}