From 8ad88dfef3d546eef53eca2cd20193685ce5db30 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Thu, 30 Apr 2026 15:12:12 -0700 Subject: [PATCH] feat(proxy): add /project/list and /project/info to internal user routes --- litellm/proxy/_types.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index 92c920ca594..1e95c96b1ee 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -689,6 +689,9 @@ class LiteLLMRoutes(enum.Enum): "/model/{model_id}/update", "/prompt/list", "/prompt/info", + # Project read routes - endpoint scopes results to caller's teams (non-admin) + "/project/list", + "/project/info", # Invitation routes - org/team admins checked in endpoint via _user_has_admin_privileges "/invitation/new", "/invitation/delete",