Update

Update Model

Edit existing model params

POST/model/update
Authorization
Body
model_nameModel Name
litellm_paramsany of
model_infoany of
Response

Successful Response

Body
any
Request
const response = await fetch('/model/update', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "detail": [
    {
      "loc": [
        "text"
      ],
      "msg": "text",
      "type": "text"
    }
  ]
}