From ffc00c0c90fa21ff6456de972d40daab8fbe2d32 Mon Sep 17 00:00:00 2001 From: yuneng-jiang Date: Thu, 26 Feb 2026 18:30:28 -0800 Subject: [PATCH] fix: correct _ENDPOINT_METADATA keys to match actual JSON data (a2a, container_files) --- litellm/proxy/public_endpoints/public_endpoints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/public_endpoints/public_endpoints.py b/litellm/proxy/public_endpoints/public_endpoints.py index ff90c778d8..247d386a96 100644 --- a/litellm/proxy/public_endpoints/public_endpoints.py +++ b/litellm/proxy/public_endpoints/public_endpoints.py @@ -50,9 +50,9 @@ _ENDPOINT_METADATA: Dict[str, Dict[str, str]] = { "search": {"label": "Search", "endpoint": "/search"}, "skills": {"label": "Skills", "endpoint": "/skills"}, "interactions": {"label": "Interactions", "endpoint": "/interactions"}, - "a2a_(Agent Gateway)": {"label": "A2A (Agent Gateway)", "endpoint": "/a2a/{agent}/message/send"}, + "a2a": {"label": "A2A (Agent Gateway)", "endpoint": "/a2a/{agent}/message/send"}, "container": {"label": "Containers", "endpoint": "/containers"}, - "container_file": {"label": "Container Files", "endpoint": "/containers/{id}/files"}, + "container_files": {"label": "Container Files", "endpoint": "/containers/{id}/files"}, "compact": {"label": "Compact", "endpoint": "/responses/compact"}, "files": {"label": "Files", "endpoint": "/files"}, "image_edits": {"label": "Image Edits", "endpoint": "/images/edits"},