#!/bin/sh

if test $# = 0 ; then
    echo "Usage: $0 model ..." >&2
    exit 1
fi

for m ; do
    curl -s --show-error -X DELETE "http://llama.ai.m-u.xyz/models?model=$m"
done
