docs(index.md): update release notes with default team for new users

This commit is contained in:
Krrish Dholakia 2025-06-21 23:09:47 -07:00
parent b1e3507d14
commit c0de1320fc
2 changed files with 21 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 815 KiB

View File

@ -43,7 +43,7 @@ ghcr.io/berriai/litellm:main-v1.73.0.rc
<TabItem value="pip" label="Pip">
``` showLineNumbers title="pip install litellm"
pip install litellm==1.73.0.rc
pip install litellm==1.73.0
```
</TabItem>
@ -56,8 +56,10 @@ pip install litellm==1.73.0.rc
* **Why Upgrade**
- Passthrough Endpoints v2: Enhanced support for subroutes and custom cost tracking for passthrough endpoints.
- Health Check Dashboard: New frontend UI for monitoring model health and status.
- User Management: Set default team for new users - enables giving all users $10 API keys for exploration.
* **Who Should Read**
- Teams using **Passthrough Endpoints**
- Teams using **User Management** on LiteLLM
- Teams using **Health Check Dashboard** for models
- Teams using **Claude Code** with LiteLLM
* **Risk of Upgrade**
@ -97,6 +99,24 @@ This release brings support for Proxy Admins to select which specific models to
This allows Proxy Admins to immediately identify which specific models are in a bad state and view the full error stack trace for faster troubleshooting.
### Set Default Team for New Users
<Image img={require('../../img/default_teams_product_ss.jpg')}/>
<br/>
v1.73.0 introduces the ability to assign new users to Default Teams. This makes it much easier to enable experimentation with LLMs within your company, while also **ensuring spend for exploration is tracked correctly.**
What this means for **Proxy Admins**:
- Set a max budget per team member: This sets a max amount an individual can spend within a team.
- Set a default team for new users: When a new user signs in via SSO / invitation link, they will be automatically added to this team.
What this means for **Developers**:
- View models across teams: You can now go to `Models + Endpoints` and view the models you have access to, across all teams you're a member of.
- Safe create key modal: If you have no model access outside of a team (default behaviour), you are now nudged to select a team on the Create Key modal. This resolves a common confusion point for new users onboarding to the proxy.
[Get Started](https://docs.litellm.ai/docs/tutorials/default_team_self_serve)
---