From 88b6cb6c28beed676a68445542eae3c28f15c50c Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 19 Apr 2025 09:56:29 -0700 Subject: [PATCH] add /responses API on UI --- .../src/components/chat_ui/EndpointSelector.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/litellm-dashboard/src/components/chat_ui/EndpointSelector.tsx b/ui/litellm-dashboard/src/components/chat_ui/EndpointSelector.tsx index 49b1df3e97..98fec9bc67 100644 --- a/ui/litellm-dashboard/src/components/chat_ui/EndpointSelector.tsx +++ b/ui/litellm-dashboard/src/components/chat_ui/EndpointSelector.tsx @@ -20,7 +20,8 @@ const EndpointSelector: React.FC = ({ // Map endpoint types to their display labels const endpointOptions = [ { value: EndpointType.CHAT, label: '/chat/completions' }, - { value: EndpointType.IMAGE, label: '/images/generations' } + { value: EndpointType.IMAGE, label: '/images/generations' }, + { value: EndpointType.RESPONSES, label: '/responses' } ]; return (