Spaces:
Sleeping
Sleeping
| def validate_use_case(description): | |
| banned_terms = ['surveillance', 'weapon', 'coercion', 'fraud'] | |
| return all(term not in description.lower() for term in banned_terms) |
| def validate_use_case(description): | |
| banned_terms = ['surveillance', 'weapon', 'coercion', 'fraud'] | |
| return all(term not in description.lower() for term in banned_terms) |