| Format | File | Size |
|---|---|---|
| GGUF (merged, Q4_K_M) | bbot-qwen3.6-27b-Q4_K_M.gguf | 16 GB |
| LoRA adapter (safetensors) | adapter_model.safetensors | 305 MB |
lokeshe09/Qwen3.6-27B-bnb-4bit (Qwen3.5 architecture, 27B, 4-bit BNB)1# Download
2huggingface-cli download yamura4/bbot bbot-qwen3.6-27b-Q4_K_M.gguf --local-dir .
3
4# Serve
5llama-server -m bbot-qwen3.6-27b-Q4_K_M.gguf --host 0.0.0.0 -c 32768 -ngl 100 --port 8080gguf-my-lora:
https://huggingface.co/spaces/ggml-org/gguf-my-lorabartowski/Qwen_Qwen3.5-27B-GGUF1from unsloth import FastModel
2model, tokenizer = FastModel.from_pretrained(
3 model_name="yamura4/bbot",
4 max_seq_length=2048,
5)