@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.
- package/dist/agent-conversation/index.js +3 -3
- package/dist/agent-message-center/index.js +5 -3
- package/dist/agent-message-center/index.js.map +1 -1
- package/dist/agent-rich-text-at-provider.d.ts +1 -15
- package/dist/agent-rich-text-at-provider.js +1 -1
- package/dist/app/renderer/agentactivity.css +25 -0
- package/dist/{chunk-ZEFETOTS.js → chunk-72YSPOHX.js} +84 -87
- package/dist/chunk-72YSPOHX.js.map +1 -0
- package/dist/{chunk-77HBKGHF.js → chunk-KCC3GNPB.js} +1 -1
- package/dist/chunk-KCC3GNPB.js.map +1 -0
- package/dist/{chunk-ITMKZRCT.js → chunk-PKCJR6GC.js} +3 -3
- package/dist/chunk-PKCJR6GC.js.map +1 -0
- package/dist/{chunk-QTZALZIV.js → chunk-PONEQEJ5.js} +5 -29
- package/dist/{chunk-QTZALZIV.js.map → chunk-PONEQEJ5.js.map} +1 -1
- package/dist/{chunk-B7K776UD.js → chunk-Y3AQGWJA.js} +9 -1
- package/dist/chunk-Y3AQGWJA.js.map +1 -0
- package/dist/{chunk-CGBRAWTD.js → chunk-Y5O7BVGU.js} +3 -3
- package/dist/i18n/index.d.ts +8 -0
- package/dist/i18n/index.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1141 -923
- package/dist/index.js.map +1 -1
- package/dist/workspace-agent-generated-files.js +2 -2
- package/package.json +10 -10
- package/dist/chunk-77HBKGHF.js.map +0 -1
- package/dist/chunk-B7K776UD.js.map +0 -1
- package/dist/chunk-ITMKZRCT.js.map +0 -1
- package/dist/chunk-ZEFETOTS.js.map +0 -1
- /package/dist/{chunk-CGBRAWTD.js.map → chunk-Y5O7BVGU.js.map} +0 -0
|
@@ -18,10 +18,10 @@ import {
|
|
|
18
18
|
extractAgentMcpToolTarget,
|
|
19
19
|
getOptionalAgentHostApi,
|
|
20
20
|
useOptionalAgentHostApi
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-PONEQEJ5.js";
|
|
22
22
|
import {
|
|
23
23
|
translate
|
|
24
|
-
} from "./chunk-
|
|
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-
|
|
1229
|
+
//# sourceMappingURL=chunk-Y5O7BVGU.js.map
|
package/dist/i18n/index.d.ts
CHANGED
|
@@ -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: "完全访问权限";
|
package/dist/i18n/index.js
CHANGED
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
|
}
|