From 0b561764b072179738fd8c630ae3d4e75220c7f2 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 18 Mar 2024 01:28:12 +0900 Subject: [PATCH] Update proxy_server.py intialize -> initialize --- litellm/proxy/proxy_server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/proxy_server.py b/litellm/proxy/proxy_server.py index 827b07eef1de..291f258b9e6a 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -1842,7 +1842,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: @@ -1858,7 +1858,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: