@tutti-os/agent-gui 0.0.26 → 0.0.28
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/{AgentMessageMarkdown-DQL8udfP.d.ts → AgentMessageMarkdown-CZaG-QW3.d.ts} +25 -4
- package/dist/agent-conversation/index.d.ts +1 -1
- package/dist/agent-conversation/index.js +3 -3
- package/dist/agent-message-center/index.js +3 -3
- package/dist/{chunk-CCI6EK5W.js → chunk-EWWAG26H.js} +1 -1
- package/dist/chunk-EWWAG26H.js.map +1 -0
- package/dist/{chunk-BUBD5E4F.js → chunk-IBQO76IY.js} +2 -2
- package/dist/{chunk-Q6QE7JNG.js → chunk-ILBFIZCI.js} +2 -2
- package/dist/{chunk-4MOHKNXA.js → chunk-LHN26OIP.js} +3 -3
- package/dist/{chunk-7JW4OAKS.js → chunk-LKT3EFGR.js} +76 -4
- package/dist/chunk-LKT3EFGR.js.map +1 -0
- package/dist/context-mention-palette/index.js +2 -2
- package/dist/index.d.ts +18 -2
- package/dist/index.js +373 -26
- package/dist/index.js.map +1 -1
- package/package.json +12 -12
- package/dist/chunk-7JW4OAKS.js.map +0 -1
- package/dist/chunk-CCI6EK5W.js.map +0 -1
- /package/dist/{chunk-BUBD5E4F.js.map → chunk-IBQO76IY.js.map} +0 -0
- /package/dist/{chunk-Q6QE7JNG.js.map → chunk-ILBFIZCI.js.map} +0 -0
- /package/dist/{chunk-4MOHKNXA.js.map → chunk-LHN26OIP.js.map} +0 -0
|
@@ -4,14 +4,14 @@ import {
|
|
|
4
4
|
AgentMentionSearchController,
|
|
5
5
|
flattenAgentMentionPaletteEntries,
|
|
6
6
|
groupStartKeys
|
|
7
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-ILBFIZCI.js";
|
|
8
8
|
import "../chunk-B7DTDZVT.js";
|
|
9
9
|
import "../chunk-F7XLV7M3.js";
|
|
10
10
|
import "../chunk-MTFSQWZ6.js";
|
|
11
11
|
import "../chunk-IBIMGLCD.js";
|
|
12
12
|
import "../chunk-XAQQN6MP.js";
|
|
13
13
|
import "../chunk-XJ34OIEQ.js";
|
|
14
|
-
import "../chunk-
|
|
14
|
+
import "../chunk-EWWAG26H.js";
|
|
15
15
|
import "../chunk-TYGL25EL.js";
|
|
16
16
|
import {
|
|
17
17
|
AGENT_CONTEXT_MENTION_PROVIDER_IDS
|
package/dist/index.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ import { m as WorkspaceAgentActivityListViewModel, g as AgentHostWorkspaceAgentS
|
|
|
4
4
|
import * as react from 'react';
|
|
5
5
|
import { PropsWithChildren, JSX } from 'react';
|
|
6
6
|
import { I18nRuntime } from '@tutti-os/ui-i18n-runtime';
|
|
7
|
-
import { d as AgentHostAgentSessionComposerSettings, c as AgentHostActivateAgentSessionResult,
|
|
8
|
-
export { f as AgentHostApi, h as AgentHostRuntimeApi,
|
|
7
|
+
import { d as AgentHostAgentSessionComposerSettings, c as AgentHostActivateAgentSessionResult, k as AgentHostUpdateAgentSessionSettingsResult, e as AgentHostAgentSessionState, j as AgentHostUnactivateAgentSessionResult, o as AgentProvider, n as AgentProbeSnapshot, a as AgentGUINodeViewModel, A as AgentGUINodeData, P as Point, N as NodeFrame, l as AgentMessageMarkdownWorkspaceAppIcon, g as AgentHostInputApi } from './AgentMessageMarkdown-CZaG-QW3.js';
|
|
8
|
+
export { f as AgentHostApi, h as AgentHostRuntimeApi, i as AgentHostSelectFilesInput, m as AgentProbeProvider, p as AgentProviderProbeListInput, q as AgentProviderProbeListResult, r as AgentUsageQuota, s as AgentUsageSnapshot } from './AgentMessageMarkdown-CZaG-QW3.js';
|
|
9
9
|
import { ReferenceLocateTarget, WorkspaceFileReferenceAdapter, WorkspaceFileReference } from '@tutti-os/workspace-file-reference/contracts';
|
|
10
10
|
import { ReferenceSourceAggregator } from '@tutti-os/workspace-file-reference/core';
|
|
11
11
|
import { W as WorkspaceLinkAction } from './workspaceLinkActions-CqWZaCY4.js';
|
|
@@ -140,14 +140,25 @@ interface AgentActivityRuntimeReadSessionAttachmentInput {
|
|
|
140
140
|
}
|
|
141
141
|
interface AgentActivityRuntimeReadPromptAssetInput {
|
|
142
142
|
agentSessionId?: string | null;
|
|
143
|
+
assetId?: string | null;
|
|
144
|
+
hostPath?: string | null;
|
|
145
|
+
kind?: string | null;
|
|
143
146
|
mimeType: string;
|
|
144
147
|
name?: string | null;
|
|
145
148
|
path?: string | null;
|
|
146
149
|
sha256?: string | null;
|
|
150
|
+
uploadStatus?: string | null;
|
|
151
|
+
uri?: string | null;
|
|
147
152
|
workspaceId: string;
|
|
148
153
|
}
|
|
149
154
|
type AgentActivityRuntimePromptContentBlock = AgentActivitySendInput["content"][number] & {
|
|
155
|
+
assetId?: string;
|
|
156
|
+
hostPath?: string;
|
|
157
|
+
kind?: string;
|
|
150
158
|
path?: string;
|
|
159
|
+
sizeBytes?: number;
|
|
160
|
+
uploadStatus?: string;
|
|
161
|
+
uri?: string;
|
|
151
162
|
};
|
|
152
163
|
interface AgentActivityRuntimeUploadPromptContentInput {
|
|
153
164
|
content: AgentActivityRuntimePromptContentBlock[];
|
|
@@ -163,9 +174,14 @@ interface AgentActivityRuntimeSessionAttachment {
|
|
|
163
174
|
data: string;
|
|
164
175
|
}
|
|
165
176
|
interface AgentActivityRuntimePromptAsset {
|
|
177
|
+
assetId?: string;
|
|
178
|
+
hostPath?: string;
|
|
179
|
+
kind?: string;
|
|
166
180
|
mimeType: string;
|
|
167
181
|
name?: string;
|
|
168
182
|
path: string;
|
|
183
|
+
uploadStatus?: string;
|
|
184
|
+
uri?: string;
|
|
169
185
|
data: string;
|
|
170
186
|
}
|
|
171
187
|
interface AgentActivityRuntime {
|