This repo contains the full text-side GGUF quantization of
stepfun-ai/Step-3.7-Flash.
The source model is Apache-2.0. The original model is multimodal, but this GGUF artifact was prepared and tested for text-side llama.cpp serving.
1git clone https://github.com/ggml-org/llama.cpp
2cd llama.cpp
3cmake -B build-cuda -DGGML_CUDA=ON
4cmake --build build-cuda --config Release -j
1llama-server \
2 --model Step-3.7-Flash-Q4_K_M.gguf \
3 --host 0.0.0.0 \
4 --port 8000 \
5 --ctx-size 262144 \
6 --n-gpu-layers all \
7 --split-mode layer \
8 --parallel 1 \
9 --reasoning on \
10 --reasoning-format deepseek \
11 --chat-template-file chat_template.jinja
Download an MTP draft GGUF from
notSnix/Step-3.7-Flash-MTP-Draft-GGUF, then run:
1llama-server \
2 --model Step-3.7-Flash-Q4_K_M.gguf \
3 --model-draft Step-3.7-Flash-MTP-Q8_0.gguf \
4 --host 0.0.0.0 \
5 --port 8000 \
6 --ctx-size 262144 \
7 --n-gpu-layers all \
8 --split-mode layer \
9 --parallel 1 \
10 --reasoning on \
11 --reasoning-format deepseek \
12 --spec-type draft-mtp \
13 --spec-draft-n-max 2 \
14 --spec-draft-p-min 0.60 \
15 --chat-template-file chat_template.jinja
GPUs: RTX PRO 6000, 3x RTX 3090.