From 1e75bf184c108354b1e5f0fe68fee8eb28a0cde5 Mon Sep 17 00:00:00 2001 From: Shunta Saito Date: Sat, 15 Feb 2025 10:08:33 +0900 Subject: [PATCH] Include .jsonl files to download from Huggingface hub --- llms/mlx_lm/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llms/mlx_lm/utils.py b/llms/mlx_lm/utils.py index 78a2e802..b5a467ce 100644 --- a/llms/mlx_lm/utils.py +++ b/llms/mlx_lm/utils.py @@ -192,6 +192,7 @@ def get_model_path(path_or_hf_repo: str, revision: Optional[str] = None) -> Path "tokenizer.model", "*.tiktoken", "*.txt", + "*.jsonl", ], ) )