mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-05 08:07:05 +00:00
Merge pull request #14040 from dmvieira/main
Fix error saving latency as timedelta on Redis
This commit is contained in:
commit
f73b9da2cd
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ class LowestLatencyLoggingHandler(CustomLogger):
|
|||
if final_value is not None:
|
||||
final_value = float(final_value)
|
||||
else:
|
||||
final_value = response_ms
|
||||
final_value = response_seconds
|
||||
|
||||
if time_to_first_token_response_time is not None:
|
||||
if isinstance(time_to_first_token_response_time, timedelta):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue