From 421dd43d5dbb43dc0c66386603224a2d08e38e5a Mon Sep 17 00:00:00 2001 From: Rugved Somwanshi Date: Wed, 4 Mar 2026 11:52:47 -0500 Subject: [PATCH 1/2] Update lms get docs --- 3_cli/0_local-models/get.md | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/3_cli/0_local-models/get.md b/3_cli/0_local-models/get.md index 6d5f6a5..d17ebfe 100644 --- a/3_cli/0_local-models/get.md +++ b/3_cli/0_local-models/get.md @@ -9,7 +9,7 @@ The `lms get` command allows you to search and download models from online repos Models you download via `lms get` will be stored in your LM Studio model directory. -### Flags +### Flags ```lms_params - name: "[modelName]" type: "string" @@ -35,6 +35,10 @@ Models you download via `lms get` will be stored in your LM Studio model directo type: "flag" optional: true description: "Always prompt you to choose a quantization, even when an exact match is auto-selected." +- name: "-y, --yes" + type: "flag" + optional: true + description: "Automatically approve prompts (useful for scripting). If multiple models match, the first is used. If multiple download options exist, the recommended option is chosen." ``` ## Download a model @@ -45,15 +49,27 @@ Download a model by name: lms get llama-3.1-8b ``` -### Specify quantization +Download from a Hugging Face URL: -Download a specific model quantization: +```shell +lms get https://huggingface.co/lmstudio-community/Qwen3.5-9B-GGUF +``` + +## Specify quantization + +Download a specific quantization: ```shell lms get llama-3.1-8b@q4_k_m ``` -### Filter by format +Download a specific quantization from a Hugging Face URL: + +```shell +lms get https://huggingface.co/lmstudio-community/Qwen3.5-9B-GGUF@Q4_k_m +``` + +## Filter by format Show only MLX or GGUF models: @@ -76,3 +92,9 @@ Always show all options: lms get --always-show-all-results lms get --always-show-download-options ``` + +Non-interactive (auto-approve prompts): + +```shell +lms get llama-3.1-8b --yes +``` From 4e478f7c33dc10b9d3e702364c88a7dcf6712ff1 Mon Sep 17 00:00:00 2001 From: Rugved Somwanshi Date: Wed, 4 Mar 2026 14:31:53 -0500 Subject: [PATCH 2/2] Add blurb explaining you can select a quantization --- 3_cli/0_local-models/get.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/3_cli/0_local-models/get.md b/3_cli/0_local-models/get.md index d17ebfe..c778c98 100644 --- a/3_cli/0_local-models/get.md +++ b/3_cli/0_local-models/get.md @@ -57,6 +57,8 @@ lms get https://huggingface.co/lmstudio-community/Qwen3.5-9B-GGUF ## Specify quantization +You can select a quantization by adding the `@` character followed by the desired quantization. Options will depend on what's available in the repository, but popular options are: `q4_k_m` and `q8_0`. + Download a specific quantization: ```shell @@ -66,7 +68,7 @@ lms get llama-3.1-8b@q4_k_m Download a specific quantization from a Hugging Face URL: ```shell -lms get https://huggingface.co/lmstudio-community/Qwen3.5-9B-GGUF@Q4_k_m +lms get https://huggingface.co/lmstudio-community/Qwen3.5-9B-GGUF@q4_k_m ``` ## Filter by format