@tutti-os/agent-gui 0.0.201 → 0.0.203
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/agent-conversation/index.js +3 -3
- package/dist/agent-gui.d.ts +2 -1
- package/dist/agent-gui.js +8 -8
- package/dist/agent-message-center/index.js +3 -3
- package/dist/app/renderer/agentactivity.css +45 -115
- package/dist/{chunk-F5ARZZES.js → chunk-4OJSSUEU.js} +2 -2
- package/dist/{chunk-PWPVYNGO.js → chunk-FFMVDJOE.js} +2 -2
- package/dist/{chunk-3FA5JIDL.js → chunk-K5AOJ5DO.js} +1 -1
- package/dist/chunk-K5AOJ5DO.js.map +1 -0
- package/dist/{chunk-DAP74J63.js → chunk-LHT2UBPE.js} +302 -165
- package/dist/chunk-LHT2UBPE.js.map +1 -0
- package/dist/{chunk-ZADHMOME.js → chunk-NEH45ROF.js} +30 -16
- package/dist/chunk-NEH45ROF.js.map +1 -0
- package/dist/{chunk-MFQB4LR5.js → chunk-RD3ZAYNV.js} +3 -3
- package/dist/{chunk-5ZO3H4C5.js → chunk-VDTG6M6K.js} +2 -2
- package/dist/{chunk-7NUEEGAA.js → chunk-X5V6P2EB.js} +5 -1
- package/dist/chunk-X5V6P2EB.js.map +1 -0
- package/dist/context-mention-palette/index.js +3 -3
- package/dist/conversation-rail-runtime.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +8 -8
- package/dist/mention-search.js +2 -2
- package/dist/workbench/contribution.js +1 -1
- package/dist/workbench/index.js +1 -1
- package/dist/workbench/tool-sidebar/index.js +1 -1
- package/dist/workbench/tool-sidebar/index.js.map +1 -1
- package/package.json +14 -14
- package/dist/chunk-3FA5JIDL.js.map +0 -1
- package/dist/chunk-7NUEEGAA.js.map +0 -1
- package/dist/chunk-DAP74J63.js.map +0 -1
- package/dist/chunk-ZADHMOME.js.map +0 -1
- /package/dist/{chunk-F5ARZZES.js.map → chunk-4OJSSUEU.js.map} +0 -0
- /package/dist/{chunk-PWPVYNGO.js.map → chunk-FFMVDJOE.js.map} +0 -0
- /package/dist/{chunk-MFQB4LR5.js.map → chunk-RD3ZAYNV.js.map} +0 -0
- /package/dist/{chunk-5ZO3H4C5.js.map → chunk-VDTG6M6K.js.map} +0 -0
|
@@ -47,7 +47,7 @@ import {
|
|
|
47
47
|
resolveWorkspaceFileLinkAction,
|
|
48
48
|
resolveWorkspaceFilePathCandidate,
|
|
49
49
|
resolveWorkspaceLinkAction
|
|
50
|
-
} from "./chunk-
|
|
50
|
+
} from "./chunk-FFMVDJOE.js";
|
|
51
51
|
import {
|
|
52
52
|
cn
|
|
53
53
|
} from "./chunk-ZVYUTXQJ.js";
|
|
@@ -55,7 +55,7 @@ import {
|
|
|
55
55
|
useOptionalAgentActivityRuntime,
|
|
56
56
|
useOptionalAgentHostApi,
|
|
57
57
|
workspaceAgentProviderLabel
|
|
58
|
-
} from "./chunk-
|
|
58
|
+
} from "./chunk-K5AOJ5DO.js";
|
|
59
59
|
import {
|
|
60
60
|
fileChangeCountFromChanges,
|
|
61
61
|
fileChangeEntriesFromChanges,
|
|
@@ -7669,6 +7669,8 @@ function AgentMessageBlock({
|
|
|
7669
7669
|
"div",
|
|
7670
7670
|
{
|
|
7671
7671
|
className: isUser ? AgentGUIConversation_styles_default.userMessageFlow : AgentGUIConversation_styles_default.assistantMessageFlow,
|
|
7672
|
+
"data-agent-message-flow-thinking-first": !isUser && row.thinking.length > 0 ? "true" : void 0,
|
|
7673
|
+
"data-agent-message-flow-thinking-last": !isUser && row.thinking.length > 0 && row.messages.length === 0 ? "true" : void 0,
|
|
7672
7674
|
children: [
|
|
7673
7675
|
thinkingContent,
|
|
7674
7676
|
row.messages.map((message) => {
|
|
@@ -7786,19 +7788,28 @@ function AgentCopyableMessageGroup({
|
|
|
7786
7788
|
}) {
|
|
7787
7789
|
"use memo";
|
|
7788
7790
|
const timestamp = formatAgentMessageTimestamp(occurredAtUnixMs);
|
|
7789
|
-
|
|
7790
|
-
|
|
7791
|
-
|
|
7792
|
-
|
|
7793
|
-
|
|
7794
|
-
|
|
7795
|
-
|
|
7796
|
-
|
|
7797
|
-
|
|
7798
|
-
|
|
7799
|
-
|
|
7800
|
-
|
|
7801
|
-
|
|
7791
|
+
const hasFooter = Boolean(timestamp || copyText);
|
|
7792
|
+
return /* @__PURE__ */ jsxs10(
|
|
7793
|
+
"div",
|
|
7794
|
+
{
|
|
7795
|
+
className: AgentGUIConversation_styles_default.messageGroup,
|
|
7796
|
+
"data-agent-message-footer": hasFooter ? "true" : void 0,
|
|
7797
|
+
"data-agent-message-speaker": speaker,
|
|
7798
|
+
children: [
|
|
7799
|
+
children,
|
|
7800
|
+
hasFooter ? /* @__PURE__ */ jsxs10("div", { className: AgentGUIConversation_styles_default.messageFooter, children: [
|
|
7801
|
+
timestamp ? /* @__PURE__ */ jsx18("span", { className: AgentGUIConversation_styles_default.messageTimestamp, children: timestamp }) : null,
|
|
7802
|
+
copyText ? /* @__PURE__ */ jsx18(
|
|
7803
|
+
AgentMessageCopyButton,
|
|
7804
|
+
{
|
|
7805
|
+
copyText,
|
|
7806
|
+
onCopyMessageText
|
|
7807
|
+
}
|
|
7808
|
+
) : null
|
|
7809
|
+
] }) : null
|
|
7810
|
+
]
|
|
7811
|
+
}
|
|
7812
|
+
);
|
|
7802
7813
|
}
|
|
7803
7814
|
function AgentMessageCopyButton({
|
|
7804
7815
|
copyText,
|
|
@@ -15434,6 +15445,9 @@ var AgentTranscriptView = memo4(function AgentTranscriptView2({
|
|
|
15434
15445
|
className: "agent-gui-transcript-row",
|
|
15435
15446
|
"data-agent-transcript-row": rowKey,
|
|
15436
15447
|
"data-agent-transcript-row-kind": row.kind,
|
|
15448
|
+
"data-agent-transcript-row-speaker": row.kind === "message" ? row.speaker : void 0,
|
|
15449
|
+
"data-agent-transcript-row-thinking-first": row.kind === "message" && row.speaker === "assistant" && row.thinking.length > 0 ? "true" : void 0,
|
|
15450
|
+
"data-agent-transcript-row-thinking-last": row.kind === "message" && row.speaker === "assistant" && row.thinking.length > 0 && row.messages.length === 0 ? "true" : void 0,
|
|
15437
15451
|
"data-agent-transcript-row-index": rowIndex,
|
|
15438
15452
|
"data-agent-transcript-row-enter": shouldAnimateEnter ? "true" : void 0,
|
|
15439
15453
|
children: /* @__PURE__ */ jsx69(
|
|
@@ -15690,4 +15704,4 @@ export {
|
|
|
15690
15704
|
AgentConversationFlow,
|
|
15691
15705
|
useProjectedAgentConversation
|
|
15692
15706
|
};
|
|
15693
|
-
//# sourceMappingURL=chunk-
|
|
15707
|
+
//# sourceMappingURL=chunk-NEH45ROF.js.map
|