@tutti-os/agent-gui 0.0.6 → 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.js +100 -26
- package/dist/agent-message-center/index.js.map +1 -1
- package/dist/app/renderer/agentactivity.css +24 -0
- package/dist/{chunk-C63Z2JWT.js → chunk-4RB33ETE.js} +81 -12
- package/dist/chunk-4RB33ETE.js.map +1 -0
- package/dist/{chunk-KGFWU4FL.js → chunk-DHOAJJ3K.js} +2 -2
- package/dist/{chunk-FKCXHCPO.js → chunk-VBNWIBNV.js} +2 -2
- package/dist/{chunk-JWVLIF5R.js → chunk-ZAVQMGAX.js} +3 -1
- package/dist/chunk-ZAVQMGAX.js.map +1 -0
- package/dist/i18n/index.d.ts +2 -0
- package/dist/i18n/index.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +250 -111
- 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-C63Z2JWT.js.map +0 -1
- package/dist/chunk-JWVLIF5R.js.map +0 -1
- /package/dist/{chunk-KGFWU4FL.js.map → chunk-DHOAJJ3K.js.map} +0 -0
- /package/dist/{chunk-FKCXHCPO.js.map → chunk-VBNWIBNV.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";
|
|
@@ -2602,6 +2603,7 @@ declare const agentGuiI18nResources: {
|
|
|
2602
2603
|
readonly initialPlaceholder: "输入 @ 引用会话、文件、事项和应用";
|
|
2603
2604
|
readonly followupPlaceholder: "要求 {{provider}} 继续后续变更";
|
|
2604
2605
|
readonly installRequiredPlaceholder: "请先从 Dock 安装 {{provider}},然后再发送消息";
|
|
2606
|
+
readonly collaboratorSessionReadOnlyPlaceholder: "非当前用户会话,不可直接对话";
|
|
2605
2607
|
readonly send: "发送";
|
|
2606
2608
|
readonly modelLabel: "模型";
|
|
2607
2609
|
readonly modelSelectionLabel: "模型选择";
|
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 {
|