@agent-platform/ui 0.0.15 → 0.0.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 +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -462,7 +462,10 @@ function ToolCallGroup({ toolCallStates }) {
|
|
|
462
462
|
const isExecuting = toolCallStates.some((s) => s.status === "executing");
|
|
463
463
|
return /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1.5", children: [
|
|
464
464
|
/* @__PURE__ */ jsx(Wrench, { size: 14, strokeWidth: 1.5, className: "text-muted-foreground/60 shrink-0" }),
|
|
465
|
-
/* @__PURE__ */
|
|
465
|
+
/* @__PURE__ */ jsxs("span", { className: "text-xs text-muted-foreground/60", children: [
|
|
466
|
+
toolCallStates.map((s) => s.toolCall.toolName).join(", "),
|
|
467
|
+
!isExecuting && " \u3092\u5B9F\u884C\u3057\u307E\u3057\u305F"
|
|
468
|
+
] }),
|
|
466
469
|
isExecuting && /* @__PURE__ */ jsx("div", { className: "h-2.5 w-2.5 animate-spin rounded-full border border-muted-foreground/40 border-t-transparent shrink-0" })
|
|
467
470
|
] });
|
|
468
471
|
}
|