Views
No views yet
| File | Size | Quant |
|---|---|---|
| Qwen3.6-35B-A3B-Q4_K_M.gguf | 21.7 GB | Q4 hybrid |
| Qwen3.6-35B-A3B-Q5_K_M.gguf | 25.4 GB | Q5 hybrid |
| Qwen3.6-35B-A3B-Q6_K.gguf | 29.1 GB | Q6 hybrid |
1# Interactive chat (--jinja uses the model's embedded chat template, not a hardcoded one)
2llama-cli -m Qwen3.6-35B-A3B-Q5_K_M.gguf -c 8192 --jinja -cnv
3
4# Single prompt
5llama-cli -m Qwen3.6-35B-A3B-Q5_K_M.gguf -c 8192 -p "Your prompt here"
6
7# Server mode
8llama-server -m Qwen3.6-35B-A3B-Q5_K_M.gguf -c 8192 --port 8080 --jinja1from llama_cpp import Llama
2
3llm = Llama(model_path="./Qwen3.6-35B-A3B-Q5_K_M.gguf", n_ctx=8192)
4output = llm.create_chat_completion(
5 messages=[
6 {"role": "user", "content": "Hello, how are you?"}
7 ]
8)
9print(output["choices"][0]["message"]["content"])llama-server -m Qwen3.6-35B-A3B-Q4_K_M.gguf -c 8192 --port 8080 --host 127.0.0.1 -ngl 99 -md Qwen3.6-35B-A3B-Q4_K_M.gguf --spec-type draft-mtp -ctk q8_0 -ctv q8_0 -fa on-md/--spec-type draft-mtp.