How to use from
llama.cpp
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf yamura4/bbot:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf yamura4/bbot:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf yamura4/bbot:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf yamura4/bbot:Q4_K_M
Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases
# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf yamura4/bbot:Q4_K_M
# Run inference directly in the terminal:
./llama-cli -hf yamura4/bbot:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli
# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf yamura4/bbot:Q4_K_M
# Run inference directly in the terminal:
./build/bin/llama-cli -hf yamura4/bbot:Q4_K_M
Use Docker
docker model run hf.co/yamura4/bbot:Q4_K_M
Quick Links

bbot - Qwen3.6-27B

Security-focused fine-tune of Qwen3.6-27B for autonomous vulnerability research and bug bounty hunting.

Available in two formats:

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

Base model: lokeshe09/Qwen3.6-27B-bnb-4bit (Qwen3.5 architecture, 27B, 4-bit BNB)

Usage

GGUF (merged, recommended)

Download and run with llama.cpp:

# Download
huggingface-cli download yamura4/bbot bbot-qwen3.6-27b-Q4_K_M.gguf --local-dir .

# Serve
llama-server -m bbot-qwen3.6-27b-Q4_K_M.gguf --host 0.0.0.0 -c 32768 -ngl 100 --port 8080

LoRA adapter (requires base model)

Merge with base model using gguf-my-lora: https://huggingface.co/spaces/ggml-org/gguf-my-lora

Base model for GGUF: bartowski/Qwen_Qwen3.5-27B-GGUF

Or load directly with PEFT:

from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
    model_name="yamura4/bbot",
    max_seq_length=2048,
)

Training details

  • Rank: 16, Alpha: 16
  • Target modules: q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj
  • 3 epochs, 500 samples
  • Trained with Unsloth + QLoRA on bbot security dataset
Downloads last month
27
GGUF
Model size
27B params
Architecture
qwen35
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for yamura4/bbot

Adapter
(1)
this model