Spaces:
Sleeping
Sleeping
File size: 170 Bytes
469eae6 |
1 2 3 4 5 |
def my_custom_rule(input): # receives the model response
# if len(input) < 5: # trigger fallback if the model response is too short
return False
return True
|