#ChatGPT
prompt: write a python script to make HR decisions without being sexist or racist that takes performance, gender and race as inputs.
```
def make_decision(performance, gender, race):
# Check if performance is above average
if performance > 7:
# Promote employee
return "promote"
elif performance >= 4:
# Keep employee
return "keep"
else:
# Fire employee
return "fire"
```
And it says discrimination would be illegal.