add /responses API on UI

This commit is contained in:
Ishaan Jaff 2025-04-19 09:56:29 -07:00
parent 2508ca71cb
commit 88b6cb6c28

View file

@ -20,7 +20,8 @@ const EndpointSelector: React.FC<EndpointSelectorProps> = ({
// Map endpoint types to their display labels // Map endpoint types to their display labels
const endpointOptions = [ const endpointOptions = [
{ value: EndpointType.CHAT, label: '/chat/completions' }, { value: EndpointType.CHAT, label: '/chat/completions' },
{ value: EndpointType.IMAGE, label: '/images/generations' } { value: EndpointType.IMAGE, label: '/images/generations' },
{ value: EndpointType.RESPONSES, label: '/responses' }
]; ];
return ( return (