@tutti-os/agent-gui 0.0.5 → 0.0.7
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-message-center/index.d.ts +1 -0
- package/dist/agent-message-center/index.js +119 -32
- package/dist/agent-message-center/index.js.map +1 -1
- package/dist/app/renderer/agentactivity.css +28 -0
- package/dist/{chunk-C63Z2JWT.js → chunk-4RB33ETE.js} +81 -12
- package/dist/chunk-4RB33ETE.js.map +1 -0
- package/dist/{chunk-7ICAFTA2.js → chunk-DHOAJJ3K.js} +2 -2
- package/dist/{chunk-F55LU7IJ.js → chunk-VBNWIBNV.js} +15 -7
- package/dist/chunk-VBNWIBNV.js.map +1 -0
- package/dist/{chunk-BHCCGKOP.js → chunk-ZAVQMGAX.js} +5 -1
- package/dist/chunk-ZAVQMGAX.js.map +1 -0
- package/dist/i18n/index.d.ts +4 -0
- package/dist/i18n/index.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +306 -143
- package/dist/index.js.map +1 -1
- package/dist/workbench/contribution.d.ts +3 -1
- package/dist/workbench/contribution.js +3 -1
- package/dist/workbench/index.js +1 -1
- package/dist/workspace-agent-generated-files.js +2 -2
- package/package.json +10 -10
- package/dist/chunk-BHCCGKOP.js.map +0 -1
- package/dist/chunk-C63Z2JWT.js.map +0 -1
- package/dist/chunk-F55LU7IJ.js.map +0 -1
- /package/dist/{chunk-7ICAFTA2.js.map → chunk-DHOAJJ3K.js.map} +0 -0
package/dist/i18n/index.d.ts
CHANGED
|
@@ -325,6 +325,7 @@ declare const agentGuiI18nResources: {
|
|
|
325
325
|
readonly initialPlaceholder: "Type @ to reference sessions, files, issues, and apps";
|
|
326
326
|
readonly followupPlaceholder: "Request follow-up changes from {{provider}}";
|
|
327
327
|
readonly installRequiredPlaceholder: "Install {{provider}} from the dock to send messages";
|
|
328
|
+
readonly collaboratorSessionReadOnlyPlaceholder: "This session belongs to another user and cannot be replied to directly";
|
|
328
329
|
readonly send: "Send";
|
|
329
330
|
readonly modelLabel: "Model";
|
|
330
331
|
readonly modelSelectionLabel: "Model selection";
|
|
@@ -590,6 +591,7 @@ declare const agentGuiI18nResources: {
|
|
|
590
591
|
readonly approvalUnavailable: "No choices are available.";
|
|
591
592
|
readonly approvalOptions: {
|
|
592
593
|
readonly allowOnce: "Yes, proceed";
|
|
594
|
+
readonly allowForSession: "Yes, for this session";
|
|
593
595
|
readonly allowAlways: "Yes, and don't ask again";
|
|
594
596
|
readonly allowAlwaysForCommandPrefix: "Yes, and don't ask again for commands that start with `{{command}}`";
|
|
595
597
|
readonly allowAlwaysForCommandPrefixLead: "Yes, and don't ask again for commands that start with";
|
|
@@ -2601,6 +2603,7 @@ declare const agentGuiI18nResources: {
|
|
|
2601
2603
|
readonly initialPlaceholder: "输入 @ 引用会话、文件、事项和应用";
|
|
2602
2604
|
readonly followupPlaceholder: "要求 {{provider}} 继续后续变更";
|
|
2603
2605
|
readonly installRequiredPlaceholder: "请先从 Dock 安装 {{provider}},然后再发送消息";
|
|
2606
|
+
readonly collaboratorSessionReadOnlyPlaceholder: "非当前用户会话,不可直接对话";
|
|
2604
2607
|
readonly send: "发送";
|
|
2605
2608
|
readonly modelLabel: "模型";
|
|
2606
2609
|
readonly modelSelectionLabel: "模型选择";
|
|
@@ -2866,6 +2869,7 @@ declare const agentGuiI18nResources: {
|
|
|
2866
2869
|
readonly approvalUnavailable: "没有可用选项。";
|
|
2867
2870
|
readonly approvalOptions: {
|
|
2868
2871
|
readonly allowOnce: "允许执行";
|
|
2872
|
+
readonly allowForSession: "本次会话允许";
|
|
2869
2873
|
readonly allowAlways: "允许,并且不再询问";
|
|
2870
2874
|
readonly allowAlwaysForCommandPrefix: "允许,并且不再询问以 `{{command}}` 开头的命令";
|
|
2871
2875
|
readonly allowAlwaysForCommandPrefixLead: "允许,并且不再询问以下列内容开头的命令";
|
package/dist/i18n/index.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -711,6 +711,7 @@ interface AgentGUINodeProps {
|
|
|
711
711
|
richTextAtProviders?: readonly AgentRichTextAtProvider[];
|
|
712
712
|
workspaceAppIcons?: readonly AgentMessageMarkdownWorkspaceAppIcon[];
|
|
713
713
|
embedded?: boolean;
|
|
714
|
+
previewMode?: boolean;
|
|
714
715
|
}
|
|
715
716
|
|
|
716
717
|
interface AgentGUIProps extends AgentGUINodeProps {
|