diff --git a/ui/litellm-dashboard/src/components/model_dashboard.tsx b/ui/litellm-dashboard/src/components/model_dashboard.tsx index 2cb1c2cf0..edf84880e 100644 --- a/ui/litellm-dashboard/src/components/model_dashboard.tsx +++ b/ui/litellm-dashboard/src/components/model_dashboard.tsx @@ -1231,9 +1231,15 @@ const ModelDashboard: React.FC = ({ }} >
-                            {model.input_cost ||
-                              model.litellm_params.input_cost_per_token ||
-                              "-"}
+                            {model.input_cost
+                              ? model.input_cost
+                              : model.litellm_params.input_cost_per_token
+                                ? (
+                                    Number(
+                                      model.litellm_params.input_cost_per_token
+                                    ) * 1000000
+                                  ).toFixed(2)
+                                : null}
                             
= ({ }} >
-                            {model.output_cost ||
-                              model.litellm_params.output_cost_per_token ||
-                              "-"}
+                            {model.output_cost
+                              ? model.output_cost
+                              : model.litellm_params.output_cost_per_token
+                                ? (
+                                    Number(
+                                      model.litellm_params.output_cost_per_token
+                                    ) * 1000000
+                                  ).toFixed(2)
+                                : null}