Views
No views yet
<think>/</think> tokens, opt-out via enable_thinking=false)| File | Size | Description |
|---|---|---|
glm-4.6v-flash-nvfp4.gguf | 5.08 GB | Quantized text model (523 tensors, 4.64 BPW) |
mmproj-glm-4.6v-flash-f16.gguf | 1.66 GB | Vision encoder projector (182 tensors, F16) |
1./llama-llava-cli \
2 -m glm-4.6v-flash-nvfp4.gguf \
3 --mmproj mmproj-glm-4.6v-flash-f16.gguf \
4 -p "Describe this image in detail." \
5 --image path/to/image.jpg1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="glm-4.6v-flash-nvfp4.gguf",
5 mmproj="mmproj-glm-4.6v-flash-f16.gguf",
6 n_ctx=32768
7)
8
9output = llm.create_chat_completion(
10 messages=[{
11 "role": "user",
12 "content": [
13 {"type": "image_url", "image_url": {"url": "image.jpg"}},
14 {"type": "text", "text": "What's in this image?"}
15 ]
16 }]
17)
18print(output["choices"][0]["message"]["content"])zai-org/GLM-4.6V-Flash → F16 GGUF → llama-quantize.exe NVFP4glm4 with 523 tensors (40 transformer layers, vision embedder)