How to use from
OpenClaw
Start the llama.cpp server
# Install llama.cpp:
brew install llama.cpp
# Start a local OpenAI-compatible server:
llama serve -hf yamura4/bbot:Q4_K_M
Configure OpenClaw
# Install OpenClaw:
npm install -g openclaw@latest
# Register the local server and set it as the default model:
openclaw onboard --non-interactive --mode local \
  --auth-choice custom-api-key \
  --custom-base-url http://127.0.0.1:8080/v1 \
  --custom-model-id "yamura4/bbot:Q4_K_M" \
  --custom-provider-id llama-cpp \
  --custom-compatibility openai \
  --custom-text-input \
  --accept-risk \
  --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
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