#34394 [Feature]: GET /v2/team/list endpoint includes litellm_model_table relation
### Check for existing issues
- [x] I have searched the existing issues and checked that my issue is not a duplicate.
### The Feature
Let's add litellm_model_table relation data to fetched entries from GET /v2/team/list endpoint by adding `include={"litellm_model_table": True},` in team_endpoints.py. Or even make it configurable via query param.
I am willing to deliver this feature if you confirm that you are interested in merging that idea to the codebase.
### Motivation, pitch
Currently, only the old GET /team/list endpoint fetches this data out of the box. In my app, I want to fetch every team with certain prefix (GET /v2/team/list supports it) and read info about their model_aliases which is inside `litellm_model_table` property. Unfortunately, only old GET /team/list endpoint fetches it - but old endpoint doesn't support filtering by alias, and fetches every team by once, which might be overwhelming for the LiteLLM app eventually. Without that change, I am forced to send N+1 requests to LiteLLM (GET /v2/team/list + N * /team/info)
### What part of LiteLLM is this about?
Other
### LiteLLM is hiring a founding backend engineer, are you interested in joining us and shipp…