How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="yamura4/bbot",
	filename="bbot-qwen3.6-27b-Q4_K_M.gguf",
)
llm.create_chat_completion(
	messages = "No input example has been defined for this model task."
)

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
-
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