liang2kl commited on
Commit
f854aa5
·
verified ·
1 Parent(s): 6b5506b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -31,7 +31,7 @@ z-lab/Qwen3.5-2B-PARO is a 4-bit [Qwen/Qwen3.5-2B](https://huggingface.co/Qwen/Q
31
  pip install "paroquant[vllm]"
32
 
33
  # NVIDIA GPU (CUDA 13.0)
34
- pip install "paroquant[vllm]" "vllm==0.17.1" \
35
  --extra-index-url https://wheels.vllm.ai/0.17.1/cu130 \
36
  --extra-index-url https://download.pytorch.org/whl/cu130
37
 
@@ -51,7 +51,9 @@ python -m paroquant.cli.chat --model z-lab/Qwen3.5-2B-PARO
51
  python -m paroquant.cli.serve --model z-lab/Qwen3.5-2B-PARO --port 8000
52
  ```
53
 
54
- Add `--llm-only` if you do not wish to load the VLM components.
 
 
55
 
56
  ### Agent with Tool Calling
57
 
 
31
  pip install "paroquant[vllm]"
32
 
33
  # NVIDIA GPU (CUDA 13.0)
34
+ pip install "paroquant[vllm] vllm==0.17.1" \
35
  --extra-index-url https://wheels.vllm.ai/0.17.1/cu130 \
36
  --extra-index-url https://download.pytorch.org/whl/cu130
37
 
 
51
  python -m paroquant.cli.serve --model z-lab/Qwen3.5-2B-PARO --port 8000
52
  ```
53
 
54
+ For vLLM, the arguments are passed to the vLLM server directly. See [vLLM docs](https://docs.vllm.ai/en/latest/configuration/serve_args/) for more details.
55
+
56
+ For MLX, add `--vlm` if you wish to load the VLM components and use the model's multimodal features. For vLLM, VLM components are loaded by default and can be skipped with the server argument `--language-model-only`.
57
 
58
  ### Agent with Tool Calling
59