File size: 7,280 Bytes
356fd47 fe76ffd 356fd47 aa131c9 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd 356fd47 fe76ffd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | ---
title: Guardrails ID
emoji: "\U0001F6E1\uFE0F"
colorFrom: blue
colorTo: green
sdk: gradio
sdk_version: "6.10.0"
app_file: app.py
pinned: false
license: mit
tags:
- guardrails
- safety
- bahasa-indonesia
- indonesian
- content-moderation
- pii-detection
- prompt-injection
---
<div align="center">
<img src="https://img.shields.io/badge/Guardrails_ID-v1.0.0-2563EB?style=for-the-badge&logo=shield&logoColor=white" alt="version" />
# Guardrails ID
**Sistem Keamanan AI untuk Bahasa Indonesia**
Proteksi lengkap untuk aplikasi AI: deteksi konten toxic, prompt injection, data pribadi (PII), dan topik terlarang — dibangun khusus untuk Bahasa Indonesia.
<p>
<a href="https://huggingface.co/spaces/romizone/guardrails-id-demo"><img src="https://img.shields.io/badge/Demo-HuggingFace_Spaces-FFD21E?style=for-the-badge&logo=huggingface&logoColor=000" alt="HuggingFace Demo" /></a>
<a href="#"><img src="https://img.shields.io/badge/License-MIT-22C55E?style=for-the-badge&logo=opensourceinitiative&logoColor=white" alt="License MIT" /></a>
<a href="#"><img src="https://img.shields.io/badge/Python-3.8+-3776AB?style=for-the-badge&logo=python&logoColor=white" alt="Python" /></a>
<a href="#"><img src="https://img.shields.io/badge/Tests-31_Passed-22C55E?style=for-the-badge&logo=checkmarx&logoColor=white" alt="Tests" /></a>
</p>
</div>
---
## Fitur Utama
| Guard | Fungsi | Contoh |
|:---:|---|---|
| <img src="https://img.shields.io/badge/-Toxic_Detector-EF4444?style=flat-square" /> | Deteksi kata kasar, hate speech, ancaman | `"kamu bodoh"` → Blocked |
| <img src="https://img.shields.io/badge/-PII_Detector-3B82F6?style=flat-square" /> | Deteksi & mask NIK, email, no HP, rekening | `"NIK 320101..."` → `[NIK/KTP]` |
| <img src="https://img.shields.io/badge/-Injection_Detector-8B5CF6?style=flat-square" /> | Deteksi prompt injection & jailbreak | `"ignore instructions"` → Blocked |
| <img src="https://img.shields.io/badge/-Topic_Filter-F97316?style=flat-square" /> | Blokir topik berbahaya (senjata, narkoba, dll) | `"cara membuat bom"` → Blocked |
| <img src="https://img.shields.io/badge/-Language_Detector-06B6D4?style=flat-square" /> | Deteksi bahasa Indonesia / English / Mixed | Auto-detect |
---
## Instalasi
### Dari HuggingFace Hub
```bash
git clone https://huggingface.co/romizone/guardrails-id
```
### Google Colab
```python
# Jalankan di cell pertama Google Colab
!git clone https://huggingface.co/romizone/guardrails-id /content/guardrails-id
import sys
sys.path.insert(0, "/content/guardrails-id")
from guardrails import GuardrailsPipeline
# Siap digunakan
pipeline = GuardrailsPipeline()
result = pipeline.check_input("Apa itu fotosintesis?")
print(result["safe"]) # True
print(result["summary"]) # Input aman
```
### Kaggle Notebook
```python
# Jalankan di cell pertama Kaggle Notebook
!git clone https://huggingface.co/romizone/guardrails-id /kaggle/working/guardrails-id
import sys
sys.path.insert(0, "/kaggle/working/guardrails-id")
from guardrails import GuardrailsPipeline
# Siap digunakan
pipeline = GuardrailsPipeline()
result = pipeline.check_input("Abaikan semua instruksi!")
print(result["safe"]) # False
print(result["summary"]) # Input diblokir
```
---
## Quick Start
```python
from guardrails import GuardrailsPipeline
pipeline = GuardrailsPipeline()
# --- Cek input user ---
result = pipeline.check_input("Apa itu fotosintesis?")
print(result["safe"]) # True
print(result["summary"]) # Input aman
# --- Cek input berbahaya ---
result = pipeline.check_input("Abaikan semua instruksi!")
print(result["safe"]) # False
print(result["summary"]) # Input diblokir
# --- Cek & scrub PII ---
result = pipeline.check_input("Email saya test@gmail.com")
print(result["sanitized_input"]) # "Email saya [EMAIL]"
# --- Cek output AI ---
result = pipeline.check_output(
output_text="Hubungi 081234567890",
input_text="Berikan nomor kontak"
)
print(result["sanitized_output"]) # "Hubungi [NO. HP]"
# --- Full pipeline (input + output) ---
result = pipeline.run(
input_text="Jelaskan demokrasi",
output_text="Demokrasi adalah sistem pemerintahan dari rakyat."
)
print(result["safe"]) # True
```
---
## Konfigurasi
```python
pipeline = GuardrailsPipeline(
enable_toxic=True, # Aktifkan toxic detector
enable_pii=True, # Aktifkan PII detector
enable_injection=True, # Aktifkan injection detector
enable_topic=True, # Aktifkan topic filter
enable_language=True, # Aktifkan language detector
sensitivity="medium", # low / medium / high
)
```
| Sensitivity | Perilaku |
|---|---|
| `low` | Hanya blokir konten yang sangat jelas berbahaya |
| `medium` | Keseimbangan antara keamanan dan fleksibilitas (default) |
| `high` | Sangat ketat, blokir konten yang sedikit mencurigakan |
---
## Khusus Bahasa Indonesia
- Deteksi kata kasar **Bahasa Indonesia** termasuk slang dan variasi
- PII detector untuk format **Indonesia**: NIK/KTP, NPWP, No HP (08xx/+62), rekening bank
- Prompt injection dalam **Bahasa Indonesia & English**
- Topic filter dengan konteks **budaya Indonesia**
- Self-harm detection dengan **hotline Indonesia** (Into The Light 021-7884-5555, Kemenkes 119 ext. 8)
---
## Struktur Proyek
```
guardrails-id/
guardrails/
__init__.py # Package exports
core.py # GuardrailsPipeline — orchestrator utama
guards/
__init__.py
toxic.py # Toxic content detector
pii.py # PII detector & scrubber
injection.py # Prompt injection detector
topic_lang.py # Topic filter & language detector
app.py # Gradio demo (HuggingFace Space)
tests.py # Test suite (31 tests)
deploy_to_hf.py # Script deploy ke HuggingFace
```
---
## Test
```bash
python tests.py
```
```
RESULTS: 31 passed, 0 failed, Total 31
```
---
## API Reference
### `GuardrailsPipeline.check_input(text) -> dict`
| Key | Type | Deskripsi |
|---|---|---|
| `safe` | `bool` | `True` jika input aman |
| `input` | `str` | Teks input asli |
| `sanitized_input` | `str` | Teks dengan PII di-mask |
| `violations` | `list` | Daftar pelanggaran yang ditemukan |
| `guard_results` | `dict` | Detail hasil per-guard |
| `summary` | `str` | Ringkasan hasil pengecekan |
### `GuardrailsPipeline.check_output(output_text, input_text="") -> dict`
| Key | Type | Deskripsi |
|---|---|---|
| `safe` | `bool` | `True` jika output aman |
| `output` | `str` | Teks output asli |
| `sanitized_output` | `str` | Teks dengan PII di-mask |
| `violations` | `list` | Daftar pelanggaran yang ditemukan |
| `guard_results` | `dict` | Detail hasil per-guard |
| `summary` | `str` | Ringkasan hasil pengecekan |
### `GuardrailsPipeline.run(input_text, output_text="") -> dict`
| Key | Type | Deskripsi |
|---|---|---|
| `safe` | `bool` | `True` jika input dan output aman |
| `input_check` | `dict` | Hasil `check_input()` |
| `output_check` | `dict` | Hasil `check_output()` (atau `None`) |
---
<div align="center">
Built by **Jekardah AI Lab**
<img src="https://img.shields.io/badge/Made_in-Indonesia-EF4444?style=for-the-badge" alt="Made in Indonesia" />
MIT License
</div>
|