@akropolys/kiku 1.7.15 → 1.7.16
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -685,9 +685,9 @@ I couldn't find any matching products in the store.`;
|
|
|
685
685
|
] }),
|
|
686
686
|
/* @__PURE__ */ jsx6("div", { className: "hsk-thinking-text", children: msg.thinking })
|
|
687
687
|
] }),
|
|
688
|
-
msg.
|
|
688
|
+
!msg.content && !msg.thinking && msg.role === "assistant" && idx === chatHistory.length - 1 && /* @__PURE__ */ jsxs5("div", { className: "hsk-status-live", children: [
|
|
689
689
|
/* @__PURE__ */ jsx6("span", { className: "hsk-status-dot" }),
|
|
690
|
-
/* @__PURE__ */ jsx6("span", { children: msg.statusMessage })
|
|
690
|
+
/* @__PURE__ */ jsx6("span", { children: msg.statusMessage || "Thinking..." })
|
|
691
691
|
] }),
|
|
692
692
|
renderMarkdown(msg.content),
|
|
693
693
|
streaming && idx === chatHistory.length - 1 && msg.role === "assistant" && /* @__PURE__ */ jsx6("span", { className: "hsk-streaming-cursor" }),
|