= ({
{model.input_cost
? model.input_cost
- : model.litellm_params.input_cost_per_token
+ : model.litellm_params.input_cost_per_token != null && model.litellm_params.input_cost_per_token != undefined
? (
Number(
model.litellm_params
@@ -2080,6 +2080,24 @@ const ModelDashboard: React.FC = ({
+
+
+
+ All Exceptions for {selectedModelGroup}
+
+
+
+
+
+
@@ -2098,15 +2116,7 @@ const ModelDashboard: React.FC = ({
- {/* */}
-
+
diff --git a/ui/litellm-dashboard/src/components/teams.tsx b/ui/litellm-dashboard/src/components/teams.tsx
index 9e5758a283d..8b4b803b563 100644
--- a/ui/litellm-dashboard/src/components/teams.tsx
+++ b/ui/litellm-dashboard/src/components/teams.tsx
@@ -151,6 +151,17 @@ const Team: React.FC = ({
+
+
+ daily
+ weekly
+ monthly
+
+
@@ -427,7 +438,7 @@ const Team: React.FC = ({
overflow: "hidden",
}}
>
- {team["max_budget"] ? team["max_budget"] : "No limit"}
+ {team["max_budget"] !== null && team["max_budget"] !== undefined ? team["max_budget"] : "No limit"}
= ({
+
+
+ daily
+ weekly
+ monthly
+
+
= ({
showLegend={true}
index="date"
categories={uniqueTeamIds}
- yAxisWidth={80}
- colors={["blue", "green", "yellow", "red", "purple"]}
-
+ yAxisWidth={80}
stack={true}
/>