From 8f585f4234f23ffa8573d544f094964fafd89680 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Thu, 8 Aug 2024 18:50:17 -0700 Subject: [PATCH] sort providers alphabetical order --- ui/litellm-dashboard/src/components/model_dashboard.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/litellm-dashboard/src/components/model_dashboard.tsx b/ui/litellm-dashboard/src/components/model_dashboard.tsx index 836ef91cfc..2d4fbe36f5 100644 --- a/ui/litellm-dashboard/src/components/model_dashboard.tsx +++ b/ui/litellm-dashboard/src/components/model_dashboard.tsx @@ -852,6 +852,7 @@ const ModelDashboard: React.FC = ({ modelData.data[i].input_cost = input_cost; modelData.data[i].output_cost = output_cost; modelData.data[i].litellm_model_name = litellm_model_name; + all_providers.push(provider); // Convert Cost in terms of Cost per 1M tokens if (modelData.data[i].input_cost) {