From f40ef538945dda3caf118db9869a7bef8befb881 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 83d539688ad..26585d45829 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 @@ -2094,7 +2094,7 @@ const ChatUI: React.FC = ({

SDK Type

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