Loading...
Loading...
Update an existing AI agent on a live LiteLLM proxy. Ask for the agent_id and what to change (model, description, MCP servers), then call PATCH /v1/agents/{agent_id}.
npx skill4agent add berriai/litellm-skills update-agentLITELLM_BASE_URL — e.g. https://my-proxy.example.com
LITELLM_API_KEY — proxy admin keycurl -s "$BASE/v1/agents" -H "Authorization: Bearer $KEY"modeldescriptiontpm_limitrpm_limitcurl -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>"}
}'