TestLLM / litellm /proxy /post_call_rules.py
Raju2024's picture
Upload 1072 files
e3278e4 verified
raw
history blame
359 Bytes
def post_response_rule(input): # receives the model response
print(f"post_response_rule:input={input}") # noqa
if len(input) < 200:
return {
"decision": False,
"message": "This violates LiteLLM Proxy Rules. Response too short",
}
return {"decision": True} # message not required since, request will pass