Skip to content

Commit

Permalink
Merge pull request BerriAI#2563 from eltociear/patch-2
Browse files Browse the repository at this point in the history
Update proxy_server.py
  • Loading branch information
ishaan-jaff authored Mar 21, 2024
2 parents 8363bd4 + 0b56176 commit bcd6203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions litellm/proxy/proxy_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1949,7 +1949,7 @@ async def load_config(
elif key == "success_callback":
litellm.success_callback = []

# intialize success callbacks
# initialize success callbacks
for callback in value:
# user passed custom_callbacks.async_on_succes_logger. They need us to import a function
if "." in callback:
Expand All @@ -1974,7 +1974,7 @@ async def load_config(
elif key == "failure_callback":
litellm.failure_callback = []

# intialize success callbacks
# initialize success callbacks
for callback in value:
# user passed custom_callbacks.async_on_succes_logger. They need us to import a function
if "." in callback:
Expand Down

0 comments on commit bcd6203

Please sign in to comment.