From 2cd584a3adfe83b199ea2ff74bd5cd9ea0b969fb Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Mon, 13 May 2024 10:17:40 -0700 Subject: [PATCH] feat - send_monthly_spend_report --- litellm/proxy/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/proxy/utils.py b/litellm/proxy/utils.py index 474b420b93..8338b66125 100644 --- a/litellm/proxy/utils.py +++ b/litellm/proxy/utils.py @@ -124,6 +124,8 @@ class ProxyLogging: asyncio.create_task(self.slack_alerting_instance.send_weekly_spend_report()) + asyncio.create_task(self.slack_alerting_instance.send_monthly_spend_report()) + if "daily_reports" in self.alert_types: litellm.callbacks.append(self.slack_alerting_instance) # type: ignore