From b72614ef43d99a10ef7786bb76af22e88def6f31 Mon Sep 17 00:00:00 2001 From: Roland Tannous <115670425+rolandtannous@users.noreply.github.com> Date: Tue, 10 Feb 2026 13:59:05 +0400 Subject: [PATCH] add llama.cpp prefix to gguf conversion help messages (#4016) --- unsloth/save.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unsloth/save.py b/unsloth/save.py index 8f90d71da7..fc3b7b8771 100644 --- a/unsloth/save.py +++ b/unsloth/save.py @@ -2038,13 +2038,13 @@ def unsloth_save_pretrained_gguf( if is_vlm_update: print("\n") print( - f"Unsloth: example usage for Multimodal LLMs: llama-mtmd-cli -m {all_file_locations[0]} --mmproj {all_file_locations[-1]}" + f"Unsloth: example usage for Multimodal LLMs: llama.cpp/llama-mtmd-cli -m {all_file_locations[0]} --mmproj {all_file_locations[-1]}" ) print("Unsloth: load image inside llama.cpp runner: /image test_image.jpg") print("Unsloth: Prompt model to describe the image") else: print( - f'Unsloth: example usage for text only LLMs: llama-cli --model {all_file_locations[0]} -p "why is the sky blue?"' + f'Unsloth: example usage for text only LLMs: llama.cpp/llama-cli --model {all_file_locations[0]} -p "why is the sky blue?"' ) if ollama_success: