@tutti-os/agent-gui 0.0.119 → 0.0.120
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/README.md +5 -1
- package/dist/{AgentGUI-CYveF1B2.d.ts → AgentGUI-CyBTKkac.d.ts} +2 -0
- package/dist/{AgentRichTextReadonly-AY36C7TV.js → AgentRichTextReadonly-P5WHSY4B.js} +5 -5
- package/dist/agent-conversation/index.js +7 -7
- package/dist/agent-gui.d.ts +1 -1
- package/dist/agent-gui.js +14 -14
- package/dist/agent-message-center/index.js +6 -6
- package/dist/{chunk-T3UX55MU.js → chunk-53PHARWE.js} +4 -4
- package/dist/{chunk-VLPWO73G.js → chunk-AAWKGMN6.js} +2 -2
- package/dist/{chunk-AMO3EB7V.js → chunk-CV5OJIU2.js} +2 -2
- package/dist/{chunk-EPNL55ZQ.js → chunk-FLI7ZUPB.js} +2 -2
- package/dist/{chunk-HSKELKXR.js → chunk-IFAS3RD4.js} +5 -5
- package/dist/{chunk-EVB5GEYF.js → chunk-K2FNTLHK.js} +4 -4
- package/dist/{chunk-DVXXZWYX.js → chunk-KACVD2GZ.js} +5 -1
- package/dist/chunk-KACVD2GZ.js.map +1 -0
- package/dist/{chunk-GJJGS2IX.js → chunk-KHQEUEIJ.js} +3 -3
- package/dist/{chunk-II3W3UEJ.js → chunk-LGLNCL6D.js} +4 -4
- package/dist/{chunk-2BVN2IMI.js → chunk-OKGXHKJ2.js} +2 -2
- package/dist/{chunk-NNIXG27Q.js → chunk-RCGW3TMB.js} +3 -3
- package/dist/{chunk-WZ4UX6OO.js → chunk-XKWMF7FA.js} +58 -25
- package/dist/chunk-XKWMF7FA.js.map +1 -0
- package/dist/{chunk-DXXKHL4G.js → chunk-XXACYFIR.js} +2 -2
- package/dist/{chunk-5G3OFCWH.js → chunk-ZCNZ53CF.js} +2 -2
- package/dist/context-mention-palette/index.js +7 -7
- package/dist/i18n/index.d.ts +4 -0
- package/dist/i18n/index.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +14 -14
- package/dist/mention-search.js +5 -5
- package/dist/workbench/contribution.js +3 -3
- package/dist/workbench/index.js +3 -3
- package/dist/workbench/sessionTitle.js +2 -2
- package/package.json +14 -14
- package/dist/chunk-DVXXZWYX.js.map +0 -1
- package/dist/chunk-WZ4UX6OO.js.map +0 -1
- /package/dist/{AgentRichTextReadonly-AY36C7TV.js.map → AgentRichTextReadonly-P5WHSY4B.js.map} +0 -0
- /package/dist/{chunk-T3UX55MU.js.map → chunk-53PHARWE.js.map} +0 -0
- /package/dist/{chunk-VLPWO73G.js.map → chunk-AAWKGMN6.js.map} +0 -0
- /package/dist/{chunk-AMO3EB7V.js.map → chunk-CV5OJIU2.js.map} +0 -0
- /package/dist/{chunk-EPNL55ZQ.js.map → chunk-FLI7ZUPB.js.map} +0 -0
- /package/dist/{chunk-HSKELKXR.js.map → chunk-IFAS3RD4.js.map} +0 -0
- /package/dist/{chunk-EVB5GEYF.js.map → chunk-K2FNTLHK.js.map} +0 -0
- /package/dist/{chunk-GJJGS2IX.js.map → chunk-KHQEUEIJ.js.map} +0 -0
- /package/dist/{chunk-II3W3UEJ.js.map → chunk-LGLNCL6D.js.map} +0 -0
- /package/dist/{chunk-2BVN2IMI.js.map → chunk-OKGXHKJ2.js.map} +0 -0
- /package/dist/{chunk-NNIXG27Q.js.map → chunk-RCGW3TMB.js.map} +0 -0
- /package/dist/{chunk-DXXKHL4G.js.map → chunk-XXACYFIR.js.map} +0 -0
- /package/dist/{chunk-5G3OFCWH.js.map → chunk-ZCNZ53CF.js.map} +0 -0
package/README.md
CHANGED
|
@@ -230,7 +230,11 @@ handle install/login/refresh requests through `onAgentAvailabilityAction`.
|
|
|
230
230
|
Hosts that launch handoffs across session-runtime boundaries may also pass
|
|
231
231
|
`handoffAgentDirectory`. Its ready entries populate only the active-conversation
|
|
232
232
|
Handoff menu; the conversation rail, session queries, and empty composer remain
|
|
233
|
-
owned by `agentDirectory`. When omitted, Handoff uses `agentDirectory`.
|
|
233
|
+
owned by `agentDirectory`. When omitted, Handoff uses `agentDirectory`. Handoff
|
|
234
|
+
rows keep the Agent name as the primary identity and render ownership separately:
|
|
235
|
+
entries without owner presentation are labeled as the current user's Agent,
|
|
236
|
+
while entries with `owner.name` or `owner.avatarUrl` are labeled as shared and
|
|
237
|
+
show the available owner identity.
|
|
234
238
|
|
|
235
239
|
The old public `providerTargets`, `providerRailMode`, provider-target renderers,
|
|
236
240
|
and `defaultProviderTargetId` contract is intentionally unsupported. Workbench
|
|
@@ -731,6 +731,8 @@ interface AgentComposerProps {
|
|
|
731
731
|
handoffConversation: string;
|
|
732
732
|
handoffConversationTooltip: string;
|
|
733
733
|
handoffConversationMenu: string;
|
|
734
|
+
handoffTargetSelf: string;
|
|
735
|
+
handoffTargetShared: string;
|
|
734
736
|
providerSwitchLabel: string;
|
|
735
737
|
projectLocked: string;
|
|
736
738
|
projectMissingDescription: string;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AgentRichTextReadonly
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-AAWKGMN6.js";
|
|
4
|
+
import "./chunk-FLI7ZUPB.js";
|
|
5
5
|
import "./chunk-LUGELG5V.js";
|
|
6
6
|
import "./chunk-KPMQGPYU.js";
|
|
7
7
|
import "./chunk-W6TO6K2X.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-ZCNZ53CF.js";
|
|
9
9
|
import "./chunk-PJP5BUU6.js";
|
|
10
10
|
import "./chunk-7KVZPJ3O.js";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-KACVD2GZ.js";
|
|
12
12
|
import "./chunk-D2JUDUYY.js";
|
|
13
13
|
import "./chunk-6CUELYIF.js";
|
|
14
14
|
import "./chunk-YNSXUEIR.js";
|
|
15
15
|
export {
|
|
16
16
|
AgentRichTextReadonly
|
|
17
17
|
};
|
|
18
|
-
//# sourceMappingURL=AgentRichTextReadonly-
|
|
18
|
+
//# sourceMappingURL=AgentRichTextReadonly-P5WHSY4B.js.map
|
|
@@ -6,25 +6,25 @@ import {
|
|
|
6
6
|
projectAgentConversationVM,
|
|
7
7
|
reconcileProjectedAgentConversationVM,
|
|
8
8
|
useProjectedAgentConversation
|
|
9
|
-
} from "../chunk-
|
|
10
|
-
import "../chunk-
|
|
9
|
+
} from "../chunk-IFAS3RD4.js";
|
|
10
|
+
import "../chunk-AAWKGMN6.js";
|
|
11
11
|
import "../chunk-VMQNG2KI.js";
|
|
12
12
|
import "../chunk-FGLQZ6I4.js";
|
|
13
13
|
import "../chunk-XJ34OIEQ.js";
|
|
14
14
|
import "../chunk-R7AXDQCA.js";
|
|
15
|
-
import "../chunk-
|
|
15
|
+
import "../chunk-FLI7ZUPB.js";
|
|
16
16
|
import "../chunk-LUGELG5V.js";
|
|
17
|
-
import "../chunk-
|
|
17
|
+
import "../chunk-KHQEUEIJ.js";
|
|
18
18
|
import "../chunk-KPMQGPYU.js";
|
|
19
|
-
import "../chunk-
|
|
19
|
+
import "../chunk-OKGXHKJ2.js";
|
|
20
20
|
import "../chunk-F5UR6EJG.js";
|
|
21
21
|
import "../chunk-W6TO6K2X.js";
|
|
22
22
|
import {
|
|
23
23
|
translate
|
|
24
|
-
} from "../chunk-
|
|
24
|
+
} from "../chunk-ZCNZ53CF.js";
|
|
25
25
|
import "../chunk-PJP5BUU6.js";
|
|
26
26
|
import "../chunk-7KVZPJ3O.js";
|
|
27
|
-
import "../chunk-
|
|
27
|
+
import "../chunk-KACVD2GZ.js";
|
|
28
28
|
import "../chunk-MIJXEELH.js";
|
|
29
29
|
import "../chunk-D2JUDUYY.js";
|
|
30
30
|
import "../chunk-6CUELYIF.js";
|
package/dist/agent-gui.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import 'react';
|
|
2
2
|
import '@tutti-os/ui-i18n-runtime';
|
|
3
|
-
export { n as AgentGUI, w as AgentGUIProps } from './AgentGUI-
|
|
3
|
+
export { n as AgentGUI, w as AgentGUIProps } from './AgentGUI-CyBTKkac.js';
|
|
4
4
|
import './agentGuiNodeTypes-D3rwGeMS.js';
|
|
5
5
|
export { l as AgentGUIHomeSuggestionId } from './types-COIp0SYP.js';
|
|
6
6
|
import './runtime-BBNdWgDU.js';
|
package/dist/agent-gui.js
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AgentGUI
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-XKWMF7FA.js";
|
|
4
4
|
import "./chunk-A4WCTHWS.js";
|
|
5
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-RCGW3TMB.js";
|
|
6
6
|
import "./chunk-TUWQV2MC.js";
|
|
7
7
|
import "./chunk-MHOYBRCY.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-CV5OJIU2.js";
|
|
9
9
|
import "./chunk-5HIF53K5.js";
|
|
10
10
|
import "./chunk-R2ZADXRB.js";
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-IFAS3RD4.js";
|
|
12
|
+
import "./chunk-AAWKGMN6.js";
|
|
13
13
|
import "./chunk-VMQNG2KI.js";
|
|
14
14
|
import "./chunk-UP3ZDYTN.js";
|
|
15
|
-
import "./chunk-
|
|
15
|
+
import "./chunk-LGLNCL6D.js";
|
|
16
16
|
import "./chunk-UV3UQAS2.js";
|
|
17
17
|
import "./chunk-FGLQZ6I4.js";
|
|
18
18
|
import "./chunk-L2GENUG3.js";
|
|
19
|
-
import "./chunk-
|
|
19
|
+
import "./chunk-53PHARWE.js";
|
|
20
20
|
import "./chunk-USIFGHT3.js";
|
|
21
21
|
import "./chunk-XJ34OIEQ.js";
|
|
22
22
|
import "./chunk-R7AXDQCA.js";
|
|
23
|
-
import "./chunk-
|
|
23
|
+
import "./chunk-FLI7ZUPB.js";
|
|
24
24
|
import "./chunk-LUGELG5V.js";
|
|
25
25
|
import "./chunk-JM24HADP.js";
|
|
26
|
-
import "./chunk-
|
|
26
|
+
import "./chunk-K2FNTLHK.js";
|
|
27
27
|
import "./chunk-2RQM7PJN.js";
|
|
28
|
-
import "./chunk-
|
|
28
|
+
import "./chunk-KHQEUEIJ.js";
|
|
29
29
|
import "./chunk-KPMQGPYU.js";
|
|
30
|
-
import "./chunk-
|
|
30
|
+
import "./chunk-XXACYFIR.js";
|
|
31
31
|
import "./chunk-YMXYBG7U.js";
|
|
32
|
-
import "./chunk-
|
|
32
|
+
import "./chunk-OKGXHKJ2.js";
|
|
33
33
|
import "./chunk-F5UR6EJG.js";
|
|
34
34
|
import "./chunk-W6TO6K2X.js";
|
|
35
|
-
import "./chunk-
|
|
35
|
+
import "./chunk-ZCNZ53CF.js";
|
|
36
36
|
import "./chunk-PJP5BUU6.js";
|
|
37
37
|
import "./chunk-7KVZPJ3O.js";
|
|
38
|
-
import "./chunk-
|
|
38
|
+
import "./chunk-KACVD2GZ.js";
|
|
39
39
|
import "./chunk-MIJXEELH.js";
|
|
40
40
|
import "./chunk-D2JUDUYY.js";
|
|
41
41
|
import "./chunk-6CUELYIF.js";
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
dispatchAgentPlanPromptAction,
|
|
7
7
|
getPromptToolDetails,
|
|
8
8
|
isPromptRequestIdTitle
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-K2FNTLHK.js";
|
|
10
10
|
import {
|
|
11
11
|
useEngineSelector
|
|
12
12
|
} from "../chunk-2RQM7PJN.js";
|
|
@@ -19,20 +19,20 @@ import {
|
|
|
19
19
|
isExitPlanSwitchModeInput,
|
|
20
20
|
normalizeAgentApprovalPurpose,
|
|
21
21
|
normalizeAskUserQuestions
|
|
22
|
-
} from "../chunk-
|
|
22
|
+
} from "../chunk-KHQEUEIJ.js";
|
|
23
23
|
import {
|
|
24
24
|
cn
|
|
25
25
|
} from "../chunk-KPMQGPYU.js";
|
|
26
26
|
import {
|
|
27
27
|
userAvatarPlaceholderUrl,
|
|
28
28
|
workspaceAgentActivityStatusLabel
|
|
29
|
-
} from "../chunk-
|
|
29
|
+
} from "../chunk-XXACYFIR.js";
|
|
30
30
|
import {
|
|
31
31
|
resolveWorkspaceAgentSessionSortTimeUnixMs
|
|
32
32
|
} from "../chunk-YMXYBG7U.js";
|
|
33
33
|
import {
|
|
34
34
|
workspaceAgentProviderLabel
|
|
35
|
-
} from "../chunk-
|
|
35
|
+
} from "../chunk-OKGXHKJ2.js";
|
|
36
36
|
import "../chunk-F5UR6EJG.js";
|
|
37
37
|
import {
|
|
38
38
|
managedAgentRoundedIconUrl
|
|
@@ -41,10 +41,10 @@ import {
|
|
|
41
41
|
AgentGuiI18nProvider,
|
|
42
42
|
getActiveUiLanguage,
|
|
43
43
|
useTranslation
|
|
44
|
-
} from "../chunk-
|
|
44
|
+
} from "../chunk-ZCNZ53CF.js";
|
|
45
45
|
import "../chunk-PJP5BUU6.js";
|
|
46
46
|
import "../chunk-7KVZPJ3O.js";
|
|
47
|
-
import "../chunk-
|
|
47
|
+
import "../chunk-KACVD2GZ.js";
|
|
48
48
|
import {
|
|
49
49
|
normalizeAgentTitleText
|
|
50
50
|
} from "../chunk-MIJXEELH.js";
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
} from "./chunk-XJ34OIEQ.js";
|
|
8
8
|
import {
|
|
9
9
|
normalizeAgentSessionMentionTitle
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-FLI7ZUPB.js";
|
|
11
11
|
import {
|
|
12
12
|
resolveAgentMentionFileThumbnailUrl
|
|
13
13
|
} from "./chunk-LUGELG5V.js";
|
|
@@ -20,11 +20,11 @@ import {
|
|
|
20
20
|
import {
|
|
21
21
|
getOptionalAgentHostApi,
|
|
22
22
|
workspaceAgentProviderLabel
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-OKGXHKJ2.js";
|
|
24
24
|
import {
|
|
25
25
|
translate,
|
|
26
26
|
translateInUiLanguage
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-ZCNZ53CF.js";
|
|
28
28
|
import {
|
|
29
29
|
normalizeAgentTitleText
|
|
30
30
|
} from "./chunk-MIJXEELH.js";
|
|
@@ -2902,4 +2902,4 @@ export {
|
|
|
2902
2902
|
AgentMentionSearchController,
|
|
2903
2903
|
preloadAgentMentionBrowse
|
|
2904
2904
|
};
|
|
2905
|
-
//# sourceMappingURL=chunk-
|
|
2905
|
+
//# sourceMappingURL=chunk-53PHARWE.js.map
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
formatAgentMentionMarkdown,
|
|
6
6
|
mentionItemToAttrs,
|
|
7
7
|
parseAgentMentionMarkdown
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-FLI7ZUPB.js";
|
|
9
9
|
import {
|
|
10
10
|
cn,
|
|
11
11
|
resolveAgentTargetPresentation,
|
|
@@ -753,4 +753,4 @@ export {
|
|
|
753
753
|
agentRichTextContentToPromptText,
|
|
754
754
|
AgentRichTextReadonly
|
|
755
755
|
};
|
|
756
|
-
//# sourceMappingURL=chunk-
|
|
756
|
+
//# sourceMappingURL=chunk-AAWKGMN6.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
translateInUiLanguage
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-KACVD2GZ.js";
|
|
4
4
|
import {
|
|
5
5
|
normalizeAgentTitleText
|
|
6
6
|
} from "./chunk-MIJXEELH.js";
|
|
@@ -376,4 +376,4 @@ export {
|
|
|
376
376
|
resolveAgentGuiWorkbenchHeaderTitle,
|
|
377
377
|
resolveAgentGuiWorkbenchSessionTitle
|
|
378
378
|
};
|
|
379
|
-
//# sourceMappingURL=chunk-
|
|
379
|
+
//# sourceMappingURL=chunk-CV5OJIU2.js.map
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
translate,
|
|
10
10
|
useTranslation
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-ZCNZ53CF.js";
|
|
12
12
|
import {
|
|
13
13
|
getAgentCustomMentionKind
|
|
14
14
|
} from "./chunk-D2JUDUYY.js";
|
|
@@ -1536,4 +1536,4 @@ export {
|
|
|
1536
1536
|
exitAgentFileMentionSuggestion,
|
|
1537
1537
|
createAgentFileMentionExtension
|
|
1538
1538
|
};
|
|
1539
|
-
//# sourceMappingURL=chunk-
|
|
1539
|
+
//# sourceMappingURL=chunk-FLI7ZUPB.js.map
|
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
AgentRichTextReadonly,
|
|
3
3
|
promptForProviderSkills,
|
|
4
4
|
skillTriggerForPrefix
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-AAWKGMN6.js";
|
|
6
6
|
import {
|
|
7
7
|
classifyRecoverableAgentMessage,
|
|
8
8
|
isProviderPlanLimitMessage,
|
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
resolveWorkspaceFileLinkAction,
|
|
39
39
|
resolveWorkspaceFilePathCandidate,
|
|
40
40
|
resolveWorkspaceLinkAction
|
|
41
|
-
} from "./chunk-
|
|
41
|
+
} from "./chunk-KHQEUEIJ.js";
|
|
42
42
|
import {
|
|
43
43
|
cn
|
|
44
44
|
} from "./chunk-KPMQGPYU.js";
|
|
@@ -46,7 +46,7 @@ import {
|
|
|
46
46
|
useOptionalAgentActivityRuntime,
|
|
47
47
|
useOptionalAgentHostApi,
|
|
48
48
|
workspaceAgentProviderLabel
|
|
49
|
-
} from "./chunk-
|
|
49
|
+
} from "./chunk-OKGXHKJ2.js";
|
|
50
50
|
import {
|
|
51
51
|
fileChangeCountFromChanges,
|
|
52
52
|
fileChangeEntriesFromChanges,
|
|
@@ -56,7 +56,7 @@ import {
|
|
|
56
56
|
getActiveUiLanguage,
|
|
57
57
|
translate,
|
|
58
58
|
useTranslation
|
|
59
|
-
} from "./chunk-
|
|
59
|
+
} from "./chunk-ZCNZ53CF.js";
|
|
60
60
|
import {
|
|
61
61
|
normalizeAgentTitleText
|
|
62
62
|
} from "./chunk-MIJXEELH.js";
|
|
@@ -14224,4 +14224,4 @@ export {
|
|
|
14224
14224
|
AgentConversationFlow,
|
|
14225
14225
|
useProjectedAgentConversation
|
|
14226
14226
|
};
|
|
14227
|
-
//# sourceMappingURL=chunk-
|
|
14227
|
+
//# sourceMappingURL=chunk-IFAS3RD4.js.map
|
|
@@ -2,17 +2,17 @@ import {
|
|
|
2
2
|
AgentGUIConversation_styles_default,
|
|
3
3
|
MessageSquareMoreIcon,
|
|
4
4
|
extractAgentMcpToolTarget
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-KHQEUEIJ.js";
|
|
6
6
|
import {
|
|
7
7
|
getOptionalAgentHostApi,
|
|
8
8
|
useOptionalAgentHostApi
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-OKGXHKJ2.js";
|
|
10
10
|
import {
|
|
11
11
|
fileChangePathsFromChanges
|
|
12
12
|
} from "./chunk-F5UR6EJG.js";
|
|
13
13
|
import {
|
|
14
14
|
translate
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-ZCNZ53CF.js";
|
|
16
16
|
|
|
17
17
|
// shared/agentConversation/planImplementationPresentation.ts
|
|
18
18
|
var PLAN_IMPLEMENTATION_PROMPT = "Implement the plan.";
|
|
@@ -1471,4 +1471,4 @@ export {
|
|
|
1471
1471
|
isPromptRequestIdTitle,
|
|
1472
1472
|
AgentInteractivePromptSurface
|
|
1473
1473
|
};
|
|
1474
|
-
//# sourceMappingURL=chunk-
|
|
1474
|
+
//# sourceMappingURL=chunk-K2FNTLHK.js.map
|
|
@@ -446,6 +446,8 @@ var enAgentGui = {
|
|
|
446
446
|
handoffConversation: "Handoff",
|
|
447
447
|
handoffConversationTooltip: "Hand off to another agent",
|
|
448
448
|
handoffConversationMenu: "Choose an agent for handoff",
|
|
449
|
+
handoffTargetSelf: "My Agent",
|
|
450
|
+
handoffTargetShared: "Shared Agent",
|
|
449
451
|
startConversation: "Start session",
|
|
450
452
|
selectConversation: "Select a session",
|
|
451
453
|
loadingConversations: "Loading sessions...",
|
|
@@ -3053,6 +3055,8 @@ var zhCNAgentGui = {
|
|
|
3053
3055
|
handoffConversation: "Handoff",
|
|
3054
3056
|
handoffConversationTooltip: "\u4EA4\u63A5\u7ED9\u5176\u4ED6 Agent",
|
|
3055
3057
|
handoffConversationMenu: "\u9009\u62E9\u8981\u4EA4\u63A5\u7684 Agent",
|
|
3058
|
+
handoffTargetSelf: "\u6211\u7684 Agent",
|
|
3059
|
+
handoffTargetShared: "\u5171\u4EAB Agent",
|
|
3056
3060
|
startConversation: "\u5F00\u59CB\u4F1A\u8BDD",
|
|
3057
3061
|
selectConversation: "\u9009\u62E9\u4E00\u4E2A\u4F1A\u8BDD",
|
|
3058
3062
|
loadingConversations: "\u6B63\u5728\u52A0\u8F7D\u4F1A\u8BDD...",
|
|
@@ -5276,4 +5280,4 @@ export {
|
|
|
5276
5280
|
translateInUiLanguage,
|
|
5277
5281
|
getActiveUiLanguage
|
|
5278
5282
|
};
|
|
5279
|
-
//# sourceMappingURL=chunk-
|
|
5283
|
+
//# sourceMappingURL=chunk-KACVD2GZ.js.map
|