aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/litellm/proxy/_experimental/post_call_rules.py
blob: d5cbe31f1be8ea53eb9dabf254edad26227caf9c (about) (plain)
1
2
3
4
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