mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
4 lines
No EOL
171 B
Python
4 lines
No EOL
171 B
Python
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 |