Budibase/budibase · error · HTTPError

Error updating configuration: ${message}

Error message

Error updating configuration: ${message}

What it means

Error "Error updating configuration: ${message}" thrown in Budibase/budibase.

Source

Thrown at packages/server/src/sdk/workspace/ai/configs/litellm.ts:296

      litellm_params: litellmParams,
      model_info: {
        updated_at: new Date().toISOString(),
        updated_by: (context.getIdentity() as UserContext)?.email,
      },
    }),
  }

  const res = await fetch(
    `${liteLLMUrl}/model/${llmModelId}/update`,
    requestOptions
  )
  if (!res.ok) {
    const json = await res.json()
    const message = sanitizeLiteLLMErrorMessage(
      json.error?.message || json.result?.error
    )

    throw new HTTPError(
      [`Error updating configuration`, message].filter(Boolean).join(": "),
      res.status || 400
    )
  }

  const json = await res.json()
  if (json?.status && json.status !== "success") {
    const message = sanitizeLiteLLMErrorMessage(
      json.error?.message || json.result?.error
    )
    throw new HTTPError(
      ["Error updating configuration", message].filter(Boolean).join(": "),
      400
    )
  }
}

async function validateCompletionsModel(model: {

View on GitHub (pinned to a81a902e9a)

When it happens

Trigger: Thrown at packages/server/src/sdk/workspace/ai/configs/litellm.ts:296 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of Budibase/budibase@a81a902e9a (2026-08-29). Data as JSON: /api/errors/03e6db236ed08482. Report an issue: GitHub.