Instructions to use iselabvn/Kali-Terminus-v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use iselabvn/Kali-Terminus-v3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="iselabvn/Kali-Terminus-v3") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("iselabvn/Kali-Terminus-v3") model = AutoModelForCausalLM.from_pretrained("iselabvn/Kali-Terminus-v3", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use iselabvn/Kali-Terminus-v3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "iselabvn/Kali-Terminus-v3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "iselabvn/Kali-Terminus-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/iselabvn/Kali-Terminus-v3
- SGLang
How to use iselabvn/Kali-Terminus-v3 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "iselabvn/Kali-Terminus-v3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "iselabvn/Kali-Terminus-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "iselabvn/Kali-Terminus-v3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "iselabvn/Kali-Terminus-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use iselabvn/Kali-Terminus-v3 with Docker Model Runner:
docker model run hf.co/iselabvn/Kali-Terminus-v3
Kali-Terminus-v3
Kali-Terminus-v3 is a fine-tuned version of Qwen/Qwen3.5-0.8B-Base on the iselabvn/Kali-terminal-executor-v2 dataset. It is designed to generate accurate Kali Linux terminal commands from natural language instructions, with built-in reasoning via Qwen3.5's native thinking/ response tokens.
Model Details
| Property | Value |
|---|---|
| Base Model | Qwen/Qwen3.5-0.8B-Base |
| Architecture | Hybrid: Gated DeltaNet (linear attention) + Gated Attention (full attention) |
| Parameters | 0.8B |
| Context Length | 262,144 |
| Fine-Tuning | LoRA (r=16, alpha=32) |
| Training Data | iselabvn/Kali-terminal-executor-v2 (2,418 samples) |
| Format | <|im_start|> / <|im_end|> with native <|tool_call|>/<|tool_response|> XML tool calls |
| Precision | bfloat16 (merged) |
Performance
Evaluated across 5 scenarios (26 turns) covering network recon, system enumeration, web recon, DNS recon, and self-correction:
| Metric | Score |
|---|---|
| Strict Pass Rate | 96.15% |
| Semantic Command Accuracy | 96.15% |
| Tool Call Parse Rate | 100.0% |
| Exactly One Tool Call | 100.0% |
Comparison with Kali-Terminus-v2
| Model | Strict Pass Rate | Improvement |
|---|---|---|
| Kali-Terminus-v2 (LFM2.5-350M) | 92.31% | Baseline |
| Kali-Terminus-v3 | 96.15% | +3.84 pp |
Tool Call Format
This model uses Qwen3.5's native tool call format with <tool_call> XML tags:
<tool_call>
<function=exec>
<parameter=command>
nmap -p- 127.0.0.1
</parameter>
</function>
</tool_call>
The model also outputs reasoning before tool calls using Qwen3.5's native thinking/ response tokens:
<|im_start|>assistant
thinking
The user wants to scan all 65535 ports. I'll use nmap with -p-.
response
<tool_call>
<function=exec>
<parameter=command>
nmap -p- 127.0.0.1
</parameter>
</function>
</tool_call><|im_end|>
Usage (Transformers)
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model_path = "iselabvn/Kali-Terminus-v3"
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_path,
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
exec_tool = [{
"type": "function",
"function": {
"name": "exec",
"description": "Execute a shell command in the Kali Linux terminal.",
"parameters": {
"type": "object",
"properties": {"command": {"type": "string"}},
"required": ["command"],
},
},
}]
messages = [{"role": "user", "content": "Scan all open ports on 127.0.0.1"}]
inputs = tokenizer.apply_chat_template(
messages, tools=exec_tool, add_generation_prompt=True,
enable_thinking=True, tokenize=True, return_dict=True, return_tensors="pt",
)
inputs = {k: v.to(model.device) for k, v in inputs.items()}
with torch.no_grad():
outputs = model.generate(**inputs, max_new_tokens=256, pad_token_id=tokenizer.eos_token_id)
response = tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=False)
print(response)
# Expected: <|im_start|>assistant
# thinking
# I need to scan all ports...
# response
#
# <tool_call>
# <function=exec>
# <parameter=command>
# nmap -p- 127.0.0.1
# </parameter>
# </function>
# </tool_call><|im_end|>
Usage (llama.cpp GGUF)
The GGUF version is available at Kali-Terminus-v3-GGUF/kali-terminus-v3-bf16.gguf. Run with llama-server:
llama-server -m kali-terminus-v3-bf16.gguf --host 127.0.0.1 --port 8080 -ngl 99
Training Details
Dataset
- Source: iselabvn/Kali-terminal-executor-v2
- Splits: 2,084 train / 232 validation / 102 test
- Features: Each sample includes
reasoning_contentfor natural language reasoning before tool calls
Fine-Tuning Parameters
| Parameter | Value |
|---|---|
| LoRA r | 16 |
| LoRA alpha | 32 |
| LoRA dropout | 0.05 |
| Target modules | q_proj, k_proj, v_proj, o_proj, in_proj, out_proj, gate_proj, up_proj, down_proj |
| Batch size | 4 (effective 16) |
| Learning rate | 2e-4 (cosine) |
| Epochs | 3 |
| Max seq length | 1024 |
| Precision | bfloat16 |
Limitations
- The model is specialized for Kali Linux terminal command generation and may not generalize well to other domains
- Performance may vary with complex multi-step scenarios
- The model uses Qwen3.5's native
thinking/responsereasoning tokens; for optimal results, useenable_thinking=Truein the generation config
Files
| File | Size | Description |
|---|---|---|
model.safetensors |
1.4 GB | Merged model weights (bfloat16) |
config.json |
— | Model configuration (text-only, MTP disabled) |
tokenizer_config.json |
— | Tokenizer configuration with full chat template |
chat_template.jinja |
— | Qwen3.5 native chat template |
Citation
If you use this model, please cite:
@misc{kali-terminus-v3,
title = {Kali-Terminus-v3: Fine-tuned Qwen3.5 for Kali Linux Terminal Command Generation},
author = {Kali-Terminus Team},
year = {2026},
}
- Downloads last month
- 45
Model tree for iselabvn/Kali-Terminus-v3
Dataset used to train iselabvn/Kali-Terminus-v3
Evaluation results
- Strict Pass Rate on Kali-terminal-executor-v2self-reported96.150
- Semantic Command Accuracy on Kali-terminal-executor-v2self-reported96.150