From 34c18ca2b24da4e51a3236e4f80f31b5a09edf8e Mon Sep 17 00:00:00 2001 From: mubashir1osmani Date: Thu, 6 Aug 2026 15:03:03 -0700 Subject: [PATCH] fix(ui): show human labels on playground SDK type select Match the SelectValue children pattern so OpenAI SDK / Azure SDK render instead of the raw openai/azure values --- .../app/(dashboard)/playground/components/chat_ui/ChatUI.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/litellm-dashboard/src/app/(dashboard)/playground/components/chat_ui/ChatUI.tsx b/ui/litellm-dashboard/src/app/(dashboard)/playground/components/chat_ui/ChatUI.tsx index 8d92d59998d..c98434bd559 100644 --- a/ui/litellm-dashboard/src/app/(dashboard)/playground/components/chat_ui/ChatUI.tsx +++ b/ui/litellm-dashboard/src/app/(dashboard)/playground/components/chat_ui/ChatUI.tsx @@ -2087,7 +2087,7 @@ const ChatUI: React.FC = ({

SDK Type

setSelectedSdk(value as "openai" | "azure")}> - + {selectedSdk === "azure" ? "Azure SDK" : "OpenAI SDK"} OpenAI SDK