mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
Litellm dev 01 24 2025 p4 (#7992)
* feat(team_endpoints.py): new `/teams/available` endpoint - allows proxy admin to expose available teams for users to join on UI * build(ui/): available_teams.tsx allow user to join available teams on UI makes it easier to onboard new users to teams * fix(navbar.tsx): cleanup title * fix(team_endpoints.py): fix linting error * test: update groq model in test * build(model_prices_and_context_window.json): update groq 3.3 model with 'supports function calling'
This commit is contained in:
parent
f77882948d
commit
1ab10d8f72
10 changed files with 329 additions and 21 deletions
|
@ -49,7 +49,9 @@ def _update_internal_new_user_params(data_json: dict, data: NewUserRequest) -> d
|
|||
is_internal_user = True
|
||||
if litellm.default_internal_user_params:
|
||||
for key, value in litellm.default_internal_user_params.items():
|
||||
if key not in data_json or data_json[key] is None:
|
||||
if key == "available_teams":
|
||||
continue
|
||||
elif key not in data_json or data_json[key] is None:
|
||||
data_json[key] = value
|
||||
elif (
|
||||
key == "models"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue