Views
No views yet
kvnone profile)pip install -U --pre vllm --extra-index-url https://wheels.vllm.ai/nightly1vllm serve "ykarout/Qwen3.5-9b-nvfp4" \
2 --port 8000 \
3 --tensor-parallel-size 1 \
4 --max-model-len 65536 \
5 --gpu-memory-utilization 0.85 \ #adjust based on VRAM
6 --reasoning-parser qwen3 \
7 --enable-auto-tool-choice \
8 --tool-call-parser qwen3_coder \
9 --chat-template "chat_template.jinja" \ #chat_template.ninja file in the repo root
10 --enable-prefix-caching \
11 --served-model-name qwen3.5-9b-nvfp41curl -s http://127.0.0.1:8000/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model":"qwen3.5-9b-nvfp4",
5 "messages":[{"role":"user","content":"Explain KV cache in 3 bullet points."}],
6 "max_tokens":220,
7 "temperature":0.7,
8 "top_p":0.8,
9 "top_k":20,
10 "min_p":0.0,
11 "presence_penalty":1.5,
12 "repetition_penalty":1.0
13 }'--max-model-len and/or --gpu-memory-utilization.