diff --git a/litellm/proxy/_new_secret_config.yaml b/litellm/proxy/_new_secret_config.yaml index 5021d3e07..90c9fc3d9 100644 --- a/litellm/proxy/_new_secret_config.yaml +++ b/litellm/proxy/_new_secret_config.yaml @@ -5,5 +5,8 @@ model_list: api_key: os.environ/OPENAI_API_KEY -general_settings: - ui_access_mode: admin_only +assistant_settings: + custom_llm_provider: azure + litellm_params: + api_key: os.environ/AZURE_API_KEY + api_base: os.environ/AZURE_API_BASE diff --git a/litellm/proxy/management_endpoints/ui_sso.py b/litellm/proxy/management_endpoints/ui_sso.py index 7f2cc1c21..d2b0e551a 100644 --- a/litellm/proxy/management_endpoints/ui_sso.py +++ b/litellm/proxy/management_endpoints/ui_sso.py @@ -547,7 +547,7 @@ async def auth_callback(request: Request): ## CHECK IF ROLE ALLOWED TO USE PROXY ## if ui_access_mode == "admin_only" and ( user_role != LitellmUserRoles.PROXY_ADMIN.value - and user_role != LitellmUserRoles.PROXY_ADMIN_VIEW_ONLY.value + or user_role != LitellmUserRoles.PROXY_ADMIN_VIEW_ONLY.value ): verbose_proxy_logger.debug("EXCEPTION RAISED") raise HTTPException(