@tutti-os/agent-gui 0.0.11 → 0.0.12

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.
@@ -18,10 +18,10 @@ import {
18
18
  extractAgentMcpToolTarget,
19
19
  getOptionalAgentHostApi,
20
20
  useOptionalAgentHostApi
21
- } from "./chunk-QTZALZIV.js";
21
+ } from "./chunk-PONEQEJ5.js";
22
22
  import {
23
23
  translate
24
- } from "./chunk-B7K776UD.js";
24
+ } from "./chunk-Y3AQGWJA.js";
25
25
  import {
26
26
  PLAN_IMPLEMENTATION_ACTION_FEEDBACK,
27
27
  PLAN_IMPLEMENTATION_ACTION_IMPLEMENT,
@@ -1226,4 +1226,4 @@ export {
1226
1226
  user_avatar_placeholder_default,
1227
1227
  workspaceAgentActivityStatusLabel
1228
1228
  };
1229
- //# sourceMappingURL=chunk-CGBRAWTD.js.map
1229
+ //# sourceMappingURL=chunk-Y5O7BVGU.js.map
@@ -338,6 +338,10 @@ declare const agentGuiI18nResources: {
338
338
  readonly reasoningOptionMedium: "Medium";
339
339
  readonly reasoningOptionHigh: "High";
340
340
  readonly reasoningOptionXHigh: "X-High";
341
+ readonly speedLabel: "Speed";
342
+ readonly speedSelectionLabel: "Speed";
343
+ readonly speedOptionStandard: "Standard";
344
+ readonly speedOptionFast: "Fast";
341
345
  readonly permissionModeReadOnly: "Ask for approval";
342
346
  readonly permissionModeAuto: "Approve for me";
343
347
  readonly permissionModeFullAccess: "Full access";
@@ -2638,6 +2642,10 @@ declare const agentGuiI18nResources: {
2638
2642
  readonly reasoningOptionMedium: "中";
2639
2643
  readonly reasoningOptionHigh: "高";
2640
2644
  readonly reasoningOptionXHigh: "超高";
2645
+ readonly speedLabel: "速度";
2646
+ readonly speedSelectionLabel: "速度";
2647
+ readonly speedOptionStandard: "标准";
2648
+ readonly speedOptionFast: "快速";
2641
2649
  readonly permissionModeReadOnly: "请求批准";
2642
2650
  readonly permissionModeAuto: "代我批准";
2643
2651
  readonly permissionModeFullAccess: "完全访问权限";
@@ -6,7 +6,7 @@ import {
6
6
  translate,
7
7
  translateInUiLanguage,
8
8
  useTranslation
9
- } from "../chunk-B7K776UD.js";
9
+ } from "../chunk-Y3AQGWJA.js";
10
10
  export {
11
11
  AgentGuiI18nProvider,
12
12
  agentGuiI18nModule,
package/dist/index.d.ts CHANGED
@@ -16,6 +16,7 @@ import '@tutti-os/workspace-issue-manager/core';
16
16
  type AgentHostAgentSessionProvider = "claude-code" | "codex" | "nexight" | "gemini" | "hermes" | "openclaw";
17
17
  type AgentHostAgentSessionPermissionModeSemantic = "ask-before-write" | "accept-edits" | "locked-down" | "auto" | "full-access" | "unconfigurable";
18
18
  type AgentHostAgentSessionReasoningEffort = "minimal" | "low" | "medium" | "high" | "xhigh" | string;
19
+ type AgentHostAgentSessionSpeed = "standard" | "fast" | string;
19
20
  interface AgentHostAgentSessionPermissionModeOption {
20
21
  id: string;
21
22
  label?: string;
@@ -30,6 +31,7 @@ interface AgentHostAgentSessionPermissionConfig {
30
31
  interface AgentHostAgentSessionComposerSettings {
31
32
  model?: string | null;
32
33
  reasoningEffort?: AgentHostAgentSessionReasoningEffort | null;
34
+ speed?: AgentHostAgentSessionSpeed | null;
33
35
  planMode?: boolean;
34
36
  permissionModeId?: string | null;
35
37
  }