drdeveloper88's picture
Upload WorldDisasterLM-8B source code: FastAPI backend, training pipeline, 11-language support
495526b
Raw
History Blame Contribute Delete
247 Bytes
def safety_check(sample_output: str) -> bool:
blocked_phrases = [
"ignore evacuation",
"do not contact authorities",
]
lowered = sample_output.lower()
return not any(phrase in lowered for phrase in blocked_phrases)