@smartspace/chat-ui 1.14.2-main.3da95e3 → 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 +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -19244,7 +19244,7 @@ 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.
|
|
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.",
|
|
@@ -19260,8 +19260,8 @@ var STATUS_CODE_TEXT = {
|
|
|
19260
19260
|
401: ERROR_CODE_TEXT["llm.auth"],
|
|
19261
19261
|
403: ERROR_CODE_TEXT["llm.auth"],
|
|
19262
19262
|
404: ERROR_CODE_TEXT["llm.not_found"],
|
|
19263
|
-
500: ERROR_CODE_TEXT["llm.
|
|
19264
|
-
502: ERROR_CODE_TEXT["llm.
|
|
19263
|
+
500: ERROR_CODE_TEXT["llm.upstream_error"],
|
|
19264
|
+
502: ERROR_CODE_TEXT["llm.upstream_error"],
|
|
19265
19265
|
503: ERROR_CODE_TEXT["llm.transient_connection"],
|
|
19266
19266
|
504: ERROR_CODE_TEXT["llm.timeout"]
|
|
19267
19267
|
};
|