# Berriai Litellm Skills Litellm Skills

> Update Agent

- Skill: `tomevault-io/berriai-litellm-skills-litellm-skills` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/berriai-litellm-skills-litellm-skills`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/berriai-litellm-skills-litellm-skills/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/berriai-litellm-skills-litellm-skills

---


# Update Agent

Update an existing AI agent on a live LiteLLM proxy.

## Setup

```
LITELLM_BASE_URL  — e.g. https://my-proxy.example.com
LITELLM_API_KEY   — proxy admin key
```

## Ask the user

1. **agent_id** — if they don't have it, list first:
   ```bash
   curl -s "$BASE/v1/agents" -H "Authorization: Bearer $KEY"
   ```
2. **What to change** — any combination of:
   - `model` (swap the underlying model)
   - `description`
   - `tpm_limit` / `rpm_limit`
   - MCP server access

## Run

Use PATCH to update only the changed fields:

```bash
curl -s -X PATCH "$BASE/v1/agents/<agent_id>" \
  -H "Authorization: Bearer $KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "litellm_params": {"model": "<new_model>"},
    "agent_card_params": {"description": "<new_description>"}
  }'
```

## Output

Show the updated agent name, model, and description. Confirm the agent ID is unchanged.

---
> Source: [BerriAI/litellm-skills](https://github.com/BerriAI/litellm-skills) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-06-22 -->

