delete-model

Installation
SKILL.md

Delete Model

Remove a model from 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. Model name or model_id — if they give a name, look up the ID first:
    curl -s "$BASE/model/info" -H "Authorization: Bearer $KEY" | python3 -c "
    import sys,json
    for m in json.load(sys.stdin).get('data',[]):
      print(m['model_info']['id'], m['model_name'])
    
Related skills
Installs
12
GitHub Stars
25
First Seen
Apr 3, 2026