diff --git a/litellm/integrations/litedebugger.py b/litellm/integrations/litedebugger.py index 76b0ddba7..4c730d083 100644 --- a/litellm/integrations/litedebugger.py +++ b/litellm/integrations/litedebugger.py @@ -62,7 +62,7 @@ class LiteDebugger: ): try: litellm_data_obj = { - "status": "succeeded", + "status": "success", "additional_details": {"original_response": original_response}, "litellm_call_id": litellm_call_id, "user_email": self.user_email, diff --git a/litellm/main.py b/litellm/main.py index d6ef97a6e..19c393e49 100644 --- a/litellm/main.py +++ b/litellm/main.py @@ -143,6 +143,7 @@ def completion( custom_llm_provider=custom_llm_provider, custom_api_base=custom_api_base, litellm_call_id=litellm_call_id, + model_alias_map=litellm.model_alias_map ) logging = Logging( model=model, diff --git a/litellm/utils.py b/litellm/utils.py index f83965138..a5c8c827d 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -552,6 +552,7 @@ def get_litellm_params( custom_llm_provider=None, custom_api_base=None, litellm_call_id=None, + model_alias_map=None ): litellm_params = { "return_async": return_async, @@ -562,6 +563,7 @@ def get_litellm_params( "custom_llm_provider": custom_llm_provider, "custom_api_base": custom_api_base, "litellm_call_id": litellm_call_id, + "model_alias_map": model_alias_map } return litellm_params