@smartspace/chat-ui 1.14.2-main.19dc263 → 1.14.2-main.fb46d29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -19244,13 +19244,14 @@ var ERROR_CODE_TEXT = {
19244
19244
  "llm.rate_limit": "\u26A0\uFE0F **The model is receiving too many requests**\n\nI'm being rate limited right now. Please wait a moment and try again.",
19245
19245
  "llm.timeout": "\u26A0\uFE0F **The model took too long to respond**\n\nPlease try again. If this keeps happening, try a shorter question.",
19246
19246
  "llm.transient_connection": "\u26A0\uFE0F **The connection to the model was interrupted**\n\nThis is usually temporary. Please try again.",
19247
- "llm.server_error": "\u26A0\uFE0F **The model provider had a problem**\n\nPlease try again in a moment.",
19247
+ "llm.upstream_error": "\u26A0\uFE0F **The model provider had a problem**\n\nPlease try again in a moment.",
19248
19248
  "llm.auth": "\u26A0\uFE0F **The model connection isn't authorised**\n\nAn administrator needs to check the model configuration.",
19249
19249
  "llm.not_found": "\u26A0\uFE0F **The model or deployment could not be found**\n\nAn administrator needs to check the model configuration.",
19250
19250
  "llm.invalid_request": "\u26A0\uFE0F **The request was rejected by the model provider**\n\nPlease try rephrasing your message.",
19251
19251
  "llm.context_window": "\u26A0\uFE0F **This conversation is too long for the model**\n\nPlease start a new thread, or ask a shorter question.",
19252
19252
  "llm.content_policy": "\u26A0\uFE0F **The response was blocked by a content filter**\n\nPlease rephrase your request.",
19253
19253
  "llm.schema_validation": "\u26A0\uFE0F **The model returned an invalid response**\n\nPlease try again.",
19254
+ "llm.unsupported_modality": "\u26A0\uFE0F **This model can't read images**\n\nSwitch to a vision-capable model, or remove the attachment and describe it instead.",
19254
19255
  "llm.unknown": GENERIC_ERROR_TEXT
19255
19256
  };
19256
19257
  var STATUS_CODE_TEXT = {
@@ -19259,8 +19260,8 @@ var STATUS_CODE_TEXT = {
19259
19260
  401: ERROR_CODE_TEXT["llm.auth"],
19260
19261
  403: ERROR_CODE_TEXT["llm.auth"],
19261
19262
  404: ERROR_CODE_TEXT["llm.not_found"],
19262
- 500: ERROR_CODE_TEXT["llm.server_error"],
19263
- 502: ERROR_CODE_TEXT["llm.server_error"],
19263
+ 500: ERROR_CODE_TEXT["llm.upstream_error"],
19264
+ 502: ERROR_CODE_TEXT["llm.upstream_error"],
19264
19265
  503: ERROR_CODE_TEXT["llm.transient_connection"],
19265
19266
  504: ERROR_CODE_TEXT["llm.timeout"]
19266
19267
  };