@tangle-network/agent-app 0.45.36 → 0.45.38
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/assistant/index.d.ts +1 -0
- package/dist/assistant/index.js +1 -1
- package/dist/{chunk-H3LYJIAQ.js → chunk-HNVAASAO.js} +141 -134
- package/dist/chunk-HNVAASAO.js.map +1 -0
- package/dist/theme/tokens.css +17 -0
- package/dist/web-react/index.d.ts +20 -8
- package/dist/web-react/index.js +3 -1
- package/package.json +6 -2
- package/dist/chunk-H3LYJIAQ.js.map +0 -1
package/dist/theme/tokens.css
CHANGED
|
@@ -159,9 +159,17 @@
|
|
|
159
159
|
utilities are wired separately in the preset. */
|
|
160
160
|
--md3-outline-variant: hsl(var(--border));
|
|
161
161
|
--md3-surface-container-low: hsl(var(--card));
|
|
162
|
+
/* `--md3-surface-container` (the canonical run-row fill) joins low on `card`:
|
|
163
|
+
the brand ladder's low/container distinction compresses onto the shadcn
|
|
164
|
+
ladder here, exactly as the preset's `surface-container*` mapping does. */
|
|
165
|
+
--md3-surface-container: hsl(var(--card));
|
|
162
166
|
--accent-surface-soft: hsl(var(--accent));
|
|
163
167
|
--accent-text: hsl(var(--accent-foreground));
|
|
164
168
|
--status-error: hsl(var(--destructive));
|
|
169
|
+
/* Status text on a tint (the run-row status dots + collapsed error line) —
|
|
170
|
+
full colors via the triples, so the dark scope re-themes them too. */
|
|
171
|
+
--surface-success-text: hsl(var(--success));
|
|
172
|
+
--surface-danger-text: hsl(var(--destructive));
|
|
165
173
|
|
|
166
174
|
/* canvas-only surfaces (not part of the shadcn vocabulary). Name matches the
|
|
167
175
|
`--canvas-backdrop` the design-canvas Workspace references (with a #1a1a1a
|
|
@@ -272,6 +280,11 @@
|
|
|
272
280
|
The soft tier at 60% clears the 1.07 hairline floor on every surface it
|
|
273
281
|
divides, and the card edge at 80% sits clearly above it — same method,
|
|
274
282
|
opposite conclusion, because the border colour itself moved. */
|
|
283
|
+
/* `--border-subtle` is the quietest tier — the resting edge of the canonical
|
|
284
|
+
run rows (`@tangle-network/ui`'s RunRowShell), which strengthen to
|
|
285
|
+
`border-border` on hover/open. 22% is the measured hairline row in the
|
|
286
|
+
table below; the row's fill step does the containing. */
|
|
287
|
+
--border-subtle: color-mix(in oklch, hsl(var(--border)) 22%, transparent);
|
|
275
288
|
--border-soft: color-mix(in oklch, hsl(var(--border)) 40%, transparent);
|
|
276
289
|
--card-edge: color-mix(in oklch, hsl(var(--border)) 60%, transparent);
|
|
277
290
|
|
|
@@ -364,6 +377,10 @@
|
|
|
364
377
|
softening leaves a visible line — see the measurement in the :root block:
|
|
365
378
|
60% reads 1.265 on the card, where the old border at FULL strength read
|
|
366
379
|
1.158. Dark runs the same three tiers as light, one step stronger. */
|
|
380
|
+
/* Dark subtle tier at 40%: interpolating the dark measurement table, it sits
|
|
381
|
+
above the 1.07 hairline floor yet clearly below soft's 1.320 — the same
|
|
382
|
+
one-step-down relationship the light tiers keep. */
|
|
383
|
+
--border-subtle: color-mix(in oklch, hsl(var(--border)) 40%, transparent);
|
|
367
384
|
--border-soft: color-mix(in oklch, hsl(var(--border)) 60%, transparent);
|
|
368
385
|
--card-edge: color-mix(in oklch, hsl(var(--border)) 80%, transparent);
|
|
369
386
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ReactNode, RefObject } from 'react';
|
|
3
|
+
import { ToolPart } from '@tangle-network/ui/types';
|
|
3
4
|
import { C as ChatInteractionField, I as InteractionAnswers, a as ChatInteractionStatus, b as ChatInteraction, c as InteractionCancelData, d as ChatSelectField, e as InteractionRequestWire } from '../contract-OxG_jVMx.js';
|
|
4
5
|
export { f as ChatFreeTextField, g as ComposerAnswerDelivery, h as INTERACTION_CANCEL_EVENT, i as INTERACTION_EVENT, j as INTERACTION_RESOLVED_EVENT, k as InteractionAnswerValue, l as InteractionPersistedPart, N as NoticeKind, m as NoticePersistedPart, P as ParseInteractionAnswersResult, n as ParseInteractionResult, o as canTransitionInteractionStatus, p as cancelStatusFor, q as composerAnswerData, r as composerAnswerDeliveries, s as dedupeQuestionInteractionsByContent, t as fieldAcceptsFreeText, u as interactionFromWireRequest, v as interactionPartKey, w as interactionToPersistedPart, x as isRenderableInteractionKind, y as isSafeInteractionFieldKey, z as isTerminalInteractionStatus, A as noticePart, B as noticePartKey, D as parseInteractionAnswers, E as parseInteractionCancel, F as parseInteractionRequest, G as persistedPartToInteraction, H as questionInteractionContentSignature, J as stampInteractionAnswers } from '../contract-OxG_jVMx.js';
|
|
5
6
|
import { ChatPlan } from '../plans/index.js';
|
|
@@ -2005,9 +2006,9 @@ declare function pendingApprovalOf(call: ChatToolCallInfo): {
|
|
|
2005
2006
|
} | null;
|
|
2006
2007
|
/** One ordered piece of an assistant turn: a run of answer text, or a tool
|
|
2007
2008
|
* call, in the sequence the agent emitted them. A message carrying `segments`
|
|
2008
|
-
* is rendered in order — interleaving text and tool
|
|
2009
|
+
* is rendered in order — interleaving text and tool rows — so the agent's
|
|
2009
2010
|
* pre- and post-tool reasoning reads chronologically instead of as one text
|
|
2010
|
-
* blob with the tool
|
|
2011
|
+
* blob with the tool rows collected after it. */
|
|
2011
2012
|
type ChatMessageSegment = {
|
|
2012
2013
|
kind: 'text';
|
|
2013
2014
|
content: string;
|
|
@@ -2041,7 +2042,7 @@ interface ChatMessagesProps {
|
|
|
2041
2042
|
* drops the label row into a fixed-height meta lane at each row's bottom
|
|
2042
2043
|
* (copy + the demoted meta, revealed on hover/focus, always visible on
|
|
2043
2044
|
* touch) and renders user bubbles neutral with a symmetric radius.
|
|
2044
|
-
* Everything else — tool
|
|
2045
|
+
* Everything else — tool rows, reasoning, streaming — is identical. */
|
|
2045
2046
|
chrome?: 'labeled' | 'quiet';
|
|
2046
2047
|
/** Catalogue models, for per-message cost from pricing. Pass [] to skip cost. */
|
|
2047
2048
|
models?: CatalogModel[];
|
|
@@ -2057,11 +2058,12 @@ interface ChatMessagesProps {
|
|
|
2057
2058
|
/** Render the trailing "agent is thinking" row. */
|
|
2058
2059
|
loading?: boolean;
|
|
2059
2060
|
/** Approve/Reject handlers for proposals awaiting approval. When omitted the
|
|
2060
|
-
*
|
|
2061
|
+
* card still shows "awaiting approval" but without action buttons. */
|
|
2061
2062
|
approval?: ProposalApprovalHandlers;
|
|
2062
|
-
/** Open a full-transcript view (e.g. {@link RunDrillIn}) from a tool
|
|
2063
|
+
/** Open a full-transcript view (e.g. {@link RunDrillIn}) from a tool row's
|
|
2064
|
+
* actions slot. */
|
|
2063
2065
|
onToolCallClick?: (call: ChatToolCallInfo, message: ChatUiMessage) => void;
|
|
2064
|
-
/** Per-tool custom detail renderers for expanded tool
|
|
2066
|
+
/** Per-tool custom detail renderers for the expanded tool row body. */
|
|
2065
2067
|
toolRenderers?: ToolDetailRenderers;
|
|
2066
2068
|
/** Stream-error affordance: when the turn failed (a thrown transport error or
|
|
2067
2069
|
* a loop-level `onErrorEvent`), pass the message here to render an error row.
|
|
@@ -2128,6 +2130,16 @@ interface ProposalApprovalHandlers {
|
|
|
2128
2130
|
/** Per-tool custom detail renderers for the expanded card body — keyed by
|
|
2129
2131
|
* tool name. Return null to fall back to the generic detail view. */
|
|
2130
2132
|
type ToolDetailRenderers = Record<string, (call: ChatToolCallInfo, message: ChatUiMessage) => ReactNode>;
|
|
2133
|
+
/**
|
|
2134
|
+
* Adapt a chat tool call to the canonical `@tangle-network/ui` `ToolPart`, so
|
|
2135
|
+
* the row renders through ui's `InlineToolItem` — one run-row grammar shared
|
|
2136
|
+
* with every other Tangle run view (the same adapter pattern ui's own
|
|
2137
|
+
* `ToolCallStep` uses for its flat props). `sandbox_run_command` maps to ui's
|
|
2138
|
+
* canonical `bash` name so the row takes the command category (terminal icon);
|
|
2139
|
+
* every other tool keeps its real name. agent-app carries no per-call timings,
|
|
2140
|
+
* so `state.time` stays unset and the row shows no duration.
|
|
2141
|
+
*/
|
|
2142
|
+
declare function chatToolCallPart(call: ChatToolCallInfo): ToolPart;
|
|
2131
2143
|
/** Whole seconds elapsed while `active`, ticking once a second. Powers the live
|
|
2132
2144
|
* "thinking" timers (the pre-first-token row and the reasoning box) so a long
|
|
2133
2145
|
* thinking gap shows progress instead of a frozen label. Counts from when
|
|
@@ -2137,9 +2149,9 @@ declare function useThinkingSeconds(active: boolean): number;
|
|
|
2137
2149
|
* The message thread: one centered column; user messages are right-aligned
|
|
2138
2150
|
* bubbles with a User label; agent messages carry an Agent meta line with
|
|
2139
2151
|
* model id, tokens/sec, and cost, plus a collapsible thinking section and
|
|
2140
|
-
* tool
|
|
2152
|
+
* tool rows. `chrome="quiet"` opts into the label-free variant: the
|
|
2141
2153
|
* label/meta row becomes a hover-revealed meta lane under each row.
|
|
2142
2154
|
*/
|
|
2143
2155
|
declare function ChatMessages({ messages, messageSize, chrome, models, renderMarkdown, renderExtras, durableCards, userLabel, agentLabel, loading, approval, onToolCallClick, toolRenderers, error, onRetry, renderEmpty, emptyState, header, resolveAttachmentUrl, workProductCards, }: ChatMessagesProps): react.JSX.Element;
|
|
2144
2156
|
|
|
2145
|
-
export { type ActivityTone, type AgentActivityPage, AgentActivityPanel, type AgentActivityPanelProps, type AgentActivityRecord, type AttachmentFileResult, CatalogModel, ChatAttachmentInput, ChatAttachmentKind, ChatAttachmentPart, ChatComposer, type ChatComposerProps, type ChatEmptyDoor, ChatEmptyState, type ChatEmptyStateProps, ChatInteraction, ChatInteractionField, type ChatInteractionRestoreMode, ChatInteractionStatus, ChatMentionPart, type ChatMessageMetrics, type ChatMessageSegment, ChatMessages, type ChatMessagesProps, ChatSelectField, type ChatStreamCallbacks, type ChatStreamToolCall, type ChatStreamToolResult, type ChatToolCallInfo, type ChatUiMessage, type ComposerFile, type ComposerFilePart, type ComposerSendFailure, type ComposerSendHandler, type ComposerSendOutcome, type ComposerSendPartsHandler, type ComposerSendRejected, type ComposerSendResult, type ConsumeChatStreamResult, DEFAULT_PROVENANCE_CONFIDENCE_POLICY, type DurableChatCard, DurableChatCards, type DurableChatCardsProps, type DurableInteractionAnswerSubmitterOptions, DurablePlanCard, type DurablePlanCardProps, DurablePlanClientError, type DurablePlanCurrentInput, type DurablePlanDecision, type DurablePlanDecisionClient, type DurablePlanDecisionClientOptions, type DurablePlanDecisionInput, type DurablePlanDecisionResult, type DurablePlanFollowUpReceipt, EMPTY_RECORD_GRID_OVERLAY, EvidenceLineageTable, type EvidenceLineageTableProps, ExceptionList, type ExceptionListProps, type FetchSessionPage, type FieldValues, FlowWaterfall, type FlowWaterfallProps, HarnessGlyph, type HarnessGlyphProps, INTERACTION_SUBMIT_TIMEOUT_MESSAGE, INTERACTION_SUBMIT_TIMEOUT_MS, InteractionActionButton, type InteractionAnswerSubmission, type InteractionAnswerSubmitterOptions, InteractionAnswers, type InteractionAttemptStore, InteractionBadge, type InteractionBadgeVariant, InteractionCancelData, InteractionPlanCard, type InteractionPlanCardProps, InteractionQuestionCard, type InteractionQuestionCardProps, InteractionRequestWire, type InteractionSubmitResult, type LinkLikeComponent, type LinkLikeProps, type MentionTextSegment, MessageAttachments, type MessageAttachmentsProps, MissionActivityLane, type MissionActivityLaneProps, PROVENANCE_BASES, type ProposalApprovalHandlers, type ProvenanceBasis, type ProvenanceBasisMeta, type ProvenanceConfidencePolicy, type ProvenanceGap, type ProvenanceGapKind, ProvenanceLegend, type ProvenanceLegendProps, type ProvenanceRecord, type ProvenanceSource, type ProvenanceSourceStatus, ProvenanceStamp, type ProvenanceStampProps, type ProvenanceStanding, type ProvenanceStandingMeta, ProvenanceValue, type ProvenanceValueProps, ProviderLogo, type ProviderLogoProps, QualityCheckList, type QualityCheckListProps, QuestionOptionList, type QuestionOptionListProps, RecordGrid, type RecordGridBooleanColumn, type RecordGridCellChange, type RecordGridCellOutcome, type RecordGridCellSource, type RecordGridColumn, type RecordGridColumnBase, type RecordGridCreateOutcome, type RecordGridCurrencyColumn, type RecordGridDateColumn, type RecordGridDependency, type RecordGridNumberColumn, type RecordGridOverlay, type RecordGridProps, type RecordGridRow, type RecordGridRowOutcome, type RecordGridSelectColumn, type RecordGridSelectOption, type RecordGridSourceBasis, type RecordGridTextColumn, type RecordGridValue, type RecordGridWriteOutcome, type RestoreChatInteractionsOptions, ReviewQueueItem, type ReviewQueuePage, ReviewQueuePanel, type ReviewQueuePanelProps, ReviewQueueState, RunDrillIn, type RunDrillInProps, SeatPaywall, type SeatPaywallProps, type SessionActionLabels, type SessionActions, type SessionActionsOptions, type SessionBulkAction, SessionHistoryPanel, type SessionHistoryPanelProps, type SessionHistoryState, type SessionPageQuery, type SmoothRevealOptions, type StreamChatOptions, type SubmitInteractionAnswer, type ToolDetailRenderers, type ToolRunRecord, type ToolRunStep, type UseChatInteractionsOptions, type UseChatInteractionsResult, type UseComposerAttachmentsOptions, type UseComposerAttachmentsResult, type UseDurablePlanFlowOptions, type UseDurablePlanFlowResult, type UseInfiniteScrollOptions, type UseSessionHistoryOptions, type WaterfallRow, WorkProductCard, type WorkProductCardProps, __resetAttachmentFileCacheForTests, activityTone, buildAnswerData, cancelChatInteraction, consumeChatStream, createDurableInteractionAnswerSubmitter, createDurablePlanDecisionClient, createInteractionAnswerSubmitter, createMemoryInteractionAttemptStore, createSessionInteractionAttemptStore, describeProvenance, describeProvenanceSourceStatus, dispatchChatStreamLine, durableChatCardsFromParts, fieldAnswer, fieldValuesFromAnswers, formatActivityCost, formatActivityDuration, formatModelCost, formatRecordGridValue, formatSessionTimestamp, formatTokensPerSecond, hasSecretField, hydrateChatInteractions, interactionStatusLabels, interactionSubmissionSignature, interactionTerminalNotes, isLateAnswerableStatus, isRecordGridCellApplicable, lateAnswerMessage, loadAttachmentFile, loadingProvenanceSources, mergeActivityPages, mergeReviewQueuePages, nextRevealCount, parseRecordGridInput, pendingApprovalOf, projectRecordGridRows, provenanceBasisMeta, provenanceGaps, provenanceNextMove, provenanceStandingMeta, provenanceTriggerLabel, pruneRecordGridOverlay, readRecordGridCell, recordGridEditorText, recordGridFail, recordGridOk, recordGridRowLabel, resolveChatInteraction, resolveProvenanceStanding, responseErrorMessage, restoreChatInteractions, reviewQueueStateLabel, rollUpProvenanceStanding, sameRecordGridValue, segmentMentionContent, settleInteractionSubmit, standingFromConfidence, streamChatTurn, sumRecordGridColumn, terminalizePendingChatInteractions, triggerAttachmentDownload, upsertChatInteraction, useChatInteractions, useComposerAttachments, useDurablePlanFlow, useInfiniteScroll, useSessionActions, useSessionHistory, useSmoothText, useThinkingSeconds, validateRecordGridCell, validateRecordGridRow, waterfallLayout, weakerProvenanceStanding, withRecordGridCreated, withRecordGridRemoved, withRecordGridServerRow, withRecordGridUpdate, withoutRecordGridCreated, withoutRecordGridRemoved, withoutRecordGridUpdate, workProductPartsFromMessageParts, workProductStatusLabel };
|
|
2157
|
+
export { type ActivityTone, type AgentActivityPage, AgentActivityPanel, type AgentActivityPanelProps, type AgentActivityRecord, type AttachmentFileResult, CatalogModel, ChatAttachmentInput, ChatAttachmentKind, ChatAttachmentPart, ChatComposer, type ChatComposerProps, type ChatEmptyDoor, ChatEmptyState, type ChatEmptyStateProps, ChatInteraction, ChatInteractionField, type ChatInteractionRestoreMode, ChatInteractionStatus, ChatMentionPart, type ChatMessageMetrics, type ChatMessageSegment, ChatMessages, type ChatMessagesProps, ChatSelectField, type ChatStreamCallbacks, type ChatStreamToolCall, type ChatStreamToolResult, type ChatToolCallInfo, type ChatUiMessage, type ComposerFile, type ComposerFilePart, type ComposerSendFailure, type ComposerSendHandler, type ComposerSendOutcome, type ComposerSendPartsHandler, type ComposerSendRejected, type ComposerSendResult, type ConsumeChatStreamResult, DEFAULT_PROVENANCE_CONFIDENCE_POLICY, type DurableChatCard, DurableChatCards, type DurableChatCardsProps, type DurableInteractionAnswerSubmitterOptions, DurablePlanCard, type DurablePlanCardProps, DurablePlanClientError, type DurablePlanCurrentInput, type DurablePlanDecision, type DurablePlanDecisionClient, type DurablePlanDecisionClientOptions, type DurablePlanDecisionInput, type DurablePlanDecisionResult, type DurablePlanFollowUpReceipt, EMPTY_RECORD_GRID_OVERLAY, EvidenceLineageTable, type EvidenceLineageTableProps, ExceptionList, type ExceptionListProps, type FetchSessionPage, type FieldValues, FlowWaterfall, type FlowWaterfallProps, HarnessGlyph, type HarnessGlyphProps, INTERACTION_SUBMIT_TIMEOUT_MESSAGE, INTERACTION_SUBMIT_TIMEOUT_MS, InteractionActionButton, type InteractionAnswerSubmission, type InteractionAnswerSubmitterOptions, InteractionAnswers, type InteractionAttemptStore, InteractionBadge, type InteractionBadgeVariant, InteractionCancelData, InteractionPlanCard, type InteractionPlanCardProps, InteractionQuestionCard, type InteractionQuestionCardProps, InteractionRequestWire, type InteractionSubmitResult, type LinkLikeComponent, type LinkLikeProps, type MentionTextSegment, MessageAttachments, type MessageAttachmentsProps, MissionActivityLane, type MissionActivityLaneProps, PROVENANCE_BASES, type ProposalApprovalHandlers, type ProvenanceBasis, type ProvenanceBasisMeta, type ProvenanceConfidencePolicy, type ProvenanceGap, type ProvenanceGapKind, ProvenanceLegend, type ProvenanceLegendProps, type ProvenanceRecord, type ProvenanceSource, type ProvenanceSourceStatus, ProvenanceStamp, type ProvenanceStampProps, type ProvenanceStanding, type ProvenanceStandingMeta, ProvenanceValue, type ProvenanceValueProps, ProviderLogo, type ProviderLogoProps, QualityCheckList, type QualityCheckListProps, QuestionOptionList, type QuestionOptionListProps, RecordGrid, type RecordGridBooleanColumn, type RecordGridCellChange, type RecordGridCellOutcome, type RecordGridCellSource, type RecordGridColumn, type RecordGridColumnBase, type RecordGridCreateOutcome, type RecordGridCurrencyColumn, type RecordGridDateColumn, type RecordGridDependency, type RecordGridNumberColumn, type RecordGridOverlay, type RecordGridProps, type RecordGridRow, type RecordGridRowOutcome, type RecordGridSelectColumn, type RecordGridSelectOption, type RecordGridSourceBasis, type RecordGridTextColumn, type RecordGridValue, type RecordGridWriteOutcome, type RestoreChatInteractionsOptions, ReviewQueueItem, type ReviewQueuePage, ReviewQueuePanel, type ReviewQueuePanelProps, ReviewQueueState, RunDrillIn, type RunDrillInProps, SeatPaywall, type SeatPaywallProps, type SessionActionLabels, type SessionActions, type SessionActionsOptions, type SessionBulkAction, SessionHistoryPanel, type SessionHistoryPanelProps, type SessionHistoryState, type SessionPageQuery, type SmoothRevealOptions, type StreamChatOptions, type SubmitInteractionAnswer, type ToolDetailRenderers, type ToolRunRecord, type ToolRunStep, type UseChatInteractionsOptions, type UseChatInteractionsResult, type UseComposerAttachmentsOptions, type UseComposerAttachmentsResult, type UseDurablePlanFlowOptions, type UseDurablePlanFlowResult, type UseInfiniteScrollOptions, type UseSessionHistoryOptions, type WaterfallRow, WorkProductCard, type WorkProductCardProps, __resetAttachmentFileCacheForTests, activityTone, buildAnswerData, cancelChatInteraction, chatToolCallPart, consumeChatStream, createDurableInteractionAnswerSubmitter, createDurablePlanDecisionClient, createInteractionAnswerSubmitter, createMemoryInteractionAttemptStore, createSessionInteractionAttemptStore, describeProvenance, describeProvenanceSourceStatus, dispatchChatStreamLine, durableChatCardsFromParts, fieldAnswer, fieldValuesFromAnswers, formatActivityCost, formatActivityDuration, formatModelCost, formatRecordGridValue, formatSessionTimestamp, formatTokensPerSecond, hasSecretField, hydrateChatInteractions, interactionStatusLabels, interactionSubmissionSignature, interactionTerminalNotes, isLateAnswerableStatus, isRecordGridCellApplicable, lateAnswerMessage, loadAttachmentFile, loadingProvenanceSources, mergeActivityPages, mergeReviewQueuePages, nextRevealCount, parseRecordGridInput, pendingApprovalOf, projectRecordGridRows, provenanceBasisMeta, provenanceGaps, provenanceNextMove, provenanceStandingMeta, provenanceTriggerLabel, pruneRecordGridOverlay, readRecordGridCell, recordGridEditorText, recordGridFail, recordGridOk, recordGridRowLabel, resolveChatInteraction, resolveProvenanceStanding, responseErrorMessage, restoreChatInteractions, reviewQueueStateLabel, rollUpProvenanceStanding, sameRecordGridValue, segmentMentionContent, settleInteractionSubmit, standingFromConfidence, streamChatTurn, sumRecordGridColumn, terminalizePendingChatInteractions, triggerAttachmentDownload, upsertChatInteraction, useChatInteractions, useComposerAttachments, useDurablePlanFlow, useInfiniteScroll, useSessionActions, useSessionHistory, useSmoothText, useThinkingSeconds, validateRecordGridCell, validateRecordGridRow, waterfallLayout, weakerProvenanceStanding, withRecordGridCreated, withRecordGridRemoved, withRecordGridServerRow, withRecordGridUpdate, withoutRecordGridCreated, withoutRecordGridRemoved, withoutRecordGridUpdate, workProductPartsFromMessageParts, workProductStatusLabel };
|
package/dist/web-react/index.js
CHANGED
|
@@ -32,6 +32,7 @@ import {
|
|
|
32
32
|
activityTone,
|
|
33
33
|
buildAnswerData,
|
|
34
34
|
cancelChatInteraction,
|
|
35
|
+
chatToolCallPart,
|
|
35
36
|
consumeChatStream,
|
|
36
37
|
createDurableInteractionAnswerSubmitter,
|
|
37
38
|
createDurablePlanDecisionClient,
|
|
@@ -110,7 +111,7 @@ import {
|
|
|
110
111
|
withoutRecordGridCreated,
|
|
111
112
|
withoutRecordGridRemoved,
|
|
112
113
|
withoutRecordGridUpdate
|
|
113
|
-
} from "../chunk-
|
|
114
|
+
} from "../chunk-HNVAASAO.js";
|
|
114
115
|
import "../chunk-FBVLEGEG.js";
|
|
115
116
|
import {
|
|
116
117
|
EvidenceLineageTable,
|
|
@@ -271,6 +272,7 @@ export {
|
|
|
271
272
|
canTransitionInteractionStatus,
|
|
272
273
|
cancelChatInteraction,
|
|
273
274
|
cancelStatusFor,
|
|
275
|
+
chatToolCallPart,
|
|
274
276
|
chatTurnRequestInit,
|
|
275
277
|
composerAnswerData,
|
|
276
278
|
composerAnswerDeliveries,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/agent-app",
|
|
3
|
-
"version": "0.45.
|
|
3
|
+
"version": "0.45.38",
|
|
4
4
|
"packageManager": "pnpm@11.17.0",
|
|
5
5
|
"description": "Build agent applications with typed chat, tools, sandboxes, integrations, billing, and evaluation.",
|
|
6
6
|
"keywords": [
|
|
@@ -524,7 +524,7 @@
|
|
|
524
524
|
"@tangle-network/agent-knowledge": "7.0.8",
|
|
525
525
|
"@tangle-network/agent-profile-materialize": "0.10.2",
|
|
526
526
|
"@tangle-network/agent-runtime": "0.126.0",
|
|
527
|
-
"@tangle-network/brand": "1.
|
|
527
|
+
"@tangle-network/brand": "1.3.0",
|
|
528
528
|
"@tangle-network/sandbox": "0.17.2",
|
|
529
529
|
"@tangle-network/sandbox-ui": "0.94.2",
|
|
530
530
|
"@tangle-network/ui": "^11.2.2",
|
|
@@ -579,6 +579,7 @@
|
|
|
579
579
|
"@tangle-network/brand": ">=1.1.0",
|
|
580
580
|
"@tangle-network/sandbox": ">=0.15.2",
|
|
581
581
|
"@tangle-network/sandbox-ui": ">=0.91.5",
|
|
582
|
+
"@tangle-network/ui": ">=11.2.2",
|
|
582
583
|
"@xyflow/react": ">=12.0.0",
|
|
583
584
|
"better-auth": ">=1.6.16",
|
|
584
585
|
"drizzle-orm": ">=0.36",
|
|
@@ -628,6 +629,9 @@
|
|
|
628
629
|
"@tangle-network/sandbox-ui": {
|
|
629
630
|
"optional": true
|
|
630
631
|
},
|
|
632
|
+
"@tangle-network/ui": {
|
|
633
|
+
"optional": true
|
|
634
|
+
},
|
|
631
635
|
"@tangle-network/brand": {
|
|
632
636
|
"optional": true
|
|
633
637
|
},
|