recognize .gguf files when scanning a folder for import

This commit is contained in:
Lincoln Stein 2024-09-21 20:51:05 -04:00 committed by Kent Keirsey
parent 8cf19c4124
commit c665cf3525

View File

@ -130,7 +130,7 @@ class ModelSearch:
return
for n in file_names:
if n.endswith((".ckpt", ".bin", ".pth", ".safetensors", ".pt")):
if n.endswith((".ckpt", ".bin", ".pth", ".safetensors", ".pt", ".gguf")):
try:
self.model_found(absolute_path / n)
except KeyboardInterrupt: