@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.
@@ -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: "允许,并且不再询问以下列内容开头的命令";
@@ -6,7 +6,7 @@ import {
6
6
  translate,
7
7
  translateInUiLanguage,
8
8
  useTranslation
9
- } from "../chunk-BHCCGKOP.js";
9
+ } from "../chunk-ZAVQMGAX.js";
10
10
  export {
11
11
  AgentGuiI18nProvider,
12
12
  agentGuiI18nModule,
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 {