mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 19:24:27 +00:00
(feat) proxy:custom_logger
This commit is contained in:
parent
6599263a85
commit
0d44f5e441
1 changed files with 22 additions and 11 deletions
|
@ -5,24 +5,35 @@ class MyCustomHandler(CustomLogger):
|
|||
print(f"Pre-API Call")
|
||||
|
||||
def log_post_api_call(self, kwargs, response_obj, start_time, end_time):
|
||||
# log: key, user, model, prompt, response, tokens, cost
|
||||
print(f"Post-API Call")
|
||||
print("\n kwargs\n")
|
||||
print(kwargs)
|
||||
model = kwargs["model"]
|
||||
messages = kwargs["messages"]
|
||||
cost = litellm.completion_cost(completion_response=response_obj)
|
||||
|
||||
# tokens used in response
|
||||
usage = response_obj.usage
|
||||
print(usage)
|
||||
|
||||
|
||||
def log_stream_event(self, kwargs, response_obj, start_time, end_time):
|
||||
print(f"On Stream")
|
||||
|
||||
def log_success_event(self, kwargs, response_obj, start_time, end_time):
|
||||
print(f"On Success")
|
||||
# log: key, user, model, prompt, response, tokens, cost
|
||||
print("\n kwargs\n")
|
||||
print(kwargs)
|
||||
model = kwargs["model"]
|
||||
messages = kwargs["messages"]
|
||||
cost = litellm.completion_cost(completion_response=response_obj)
|
||||
response = response_obj
|
||||
# tokens used in response
|
||||
usage = response_obj["usage"]
|
||||
|
||||
print(
|
||||
f"""
|
||||
Model: {model},
|
||||
Messages: {messages},
|
||||
Usage: {usage},
|
||||
Cost: {cost},
|
||||
Response: {response}
|
||||
"""
|
||||
)
|
||||
|
||||
print(usage)
|
||||
|
||||
|
||||
def log_failure_event(self, kwargs, response_obj, start_time, end_time):
|
||||
print(f"On Failure")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue