Loading...
Loading...
Create a new team on a live LiteLLM proxy. Asks for team name, budget, and allowed models, then calls POST /team/new and shows the result. Use when the user wants to create a new team, set up team budgets, or configure model access for a team on the proxy.
npx skill4agent add berriai/litellm-skills add-teamLITELLM_BASE_URL — e.g. https://my-proxy.example.com
LITELLM_API_KEY — proxy admin keyteam_alias100.00gpt-4o, gpt-4o-miniBASE="$LITELLM_BASE_URL"
KEY="$LITELLM_API_KEY"
curl -s -X POST "$BASE/team/new" \
-H "Authorization: Bearer $KEY" \
-H "Content-Type: application/json" \
-d '{
"team_alias": "<name>",
"max_budget": <budget_or_null>,
"models": [<models_or_empty>],
"tpm_limit": <tpm_or_null>,
"rpm_limit": <rpm_or_null>
}'curl -s "$BASE/team/info?team_id=<team_id>" \
-H "Authorization: Bearer $KEY"team_idteam_aliasmax_budgetmodelsLITELLM_API_KEYdetail