@burdenoff/fe-libs 2026.911.6 → 2026.912.2
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/shared/assistant/index.d.ts +5 -0
- package/dist/shared/assistant/index.d.ts.map +1 -1
- package/dist/shared/assistant/preview/entity/AssistantEntityPreview.d.ts +77 -0
- package/dist/shared/assistant/preview/entity/AssistantEntityPreview.d.ts.map +1 -0
- package/dist/shared/assistant/preview/entity/AssistantEntityPreview.js +191 -0
- package/dist/shared/assistant/preview/entity/AssistantStepRail.d.ts +22 -0
- package/dist/shared/assistant/preview/entity/AssistantStepRail.d.ts.map +1 -0
- package/dist/shared/assistant/preview/entity/AssistantStepRail.js +124 -0
- package/dist/shared/assistant/preview/entity/entityPreviewState.d.ts +134 -0
- package/dist/shared/assistant/preview/entity/entityPreviewState.d.ts.map +1 -0
- package/dist/shared/assistant/preview/entity/entityPreviewState.js +63 -0
- package/dist/shared/assistant/preview/previewTransitions.d.ts +12 -0
- package/dist/shared/assistant/preview/previewTransitions.d.ts.map +1 -1
- package/dist/shared/assistant/preview/previewTransitions.js +57 -44
- package/dist/shared/assistant/preview/runIdentity.d.ts +44 -0
- package/dist/shared/assistant/preview/runIdentity.d.ts.map +1 -0
- package/dist/shared/assistant/preview/runIdentity.js +33 -0
- package/dist/shared/assistant/preview/surfaceState.d.ts +133 -0
- package/dist/shared/assistant/preview/surfaceState.d.ts.map +1 -0
- package/dist/shared/assistant/preview/surfaceState.js +92 -0
- package/dist/shared/assistant/preview/types.d.ts +33 -0
- package/dist/shared/assistant/preview/types.d.ts.map +1 -1
- package/dist/shared/assistant/preview/useAssistantPreviewBridge.d.ts.map +1 -1
- package/dist/shared/assistant/preview/useAssistantPreviewBridge.js +47 -39
- package/dist/shared-assistant.js +44 -39
- package/package.json +1 -1
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { useAssistantTr as e } from "../i18n.js";
|
|
2
2
|
import { useAssistantStore as t } from "../store.js";
|
|
3
3
|
import { isStageCopy as n } from "../stageCopy.js";
|
|
4
|
-
import {
|
|
5
|
-
import { IDLE_PREVIEW_STATE as i,
|
|
6
|
-
import {
|
|
4
|
+
import { parseToolActivity as r } from "../ui/AssistantToolActivity.js";
|
|
5
|
+
import { IDLE_PREVIEW_STATE as i, isRunningStatus as a, nextPreviewEvents as o } from "./previewTransitions.js";
|
|
6
|
+
import { NO_OWNER as s } from "./surfaceState.js";
|
|
7
|
+
import { runIdentities as c } from "./runIdentity.js";
|
|
8
|
+
import { useEffect as l, useRef as u } from "react";
|
|
7
9
|
//#region src/shared/assistant/preview/useAssistantPreviewBridge.ts
|
|
8
|
-
function
|
|
10
|
+
function d(e, t) {
|
|
9
11
|
try {
|
|
10
12
|
let n = e?.onEvent?.(t);
|
|
11
13
|
n && typeof n.then == "function" && Promise.resolve(n).catch((e) => {
|
|
@@ -15,57 +17,63 @@ function c(e, t) {
|
|
|
15
17
|
console.error("[assistant] preview observer threw", e);
|
|
16
18
|
}
|
|
17
19
|
}
|
|
18
|
-
function
|
|
19
|
-
let
|
|
20
|
+
function f(f) {
|
|
21
|
+
let p = e(), m = t((e) => e.activeConversationId), h = t((e) => e.activeConversationId ? e.processingByConversationId[e.activeConversationId] : void 0), g = t((e) => {
|
|
20
22
|
let t = e.activeConversationId, n = t ? e.processingByConversationId[t]?.messageId : null;
|
|
21
23
|
return !t || !n ? null : e.conversations.find((e) => e.id === t)?.messages.find((e) => e.id === n)?.content ?? null;
|
|
22
|
-
}),
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}, [
|
|
26
|
-
let { events: e, state: t } =
|
|
24
|
+
}), _ = u(i), v = u(null), y = u(null);
|
|
25
|
+
l(() => {
|
|
26
|
+
v.current = f;
|
|
27
|
+
}, [f]), l(() => () => {
|
|
28
|
+
let { events: e, state: t } = o(_.current, {
|
|
27
29
|
run: null,
|
|
28
30
|
conversationId: null,
|
|
29
31
|
status: "idle",
|
|
30
32
|
content: null,
|
|
33
|
+
steps: [],
|
|
31
34
|
isFiller: () => !1
|
|
32
35
|
});
|
|
33
|
-
|
|
34
|
-
for (let t of e)
|
|
35
|
-
}, []),
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
_.current = t;
|
|
37
|
+
for (let t of e) d(v.current, t);
|
|
38
|
+
}, []), l(() => {
|
|
39
|
+
let e = f?.onEvent, t = h?.messageId ?? null, l = m && t ? `${m}:${t}` : null, u = h?.status ?? "idle", v = l ? a(u) ? c.ownerFor(l) : c.ownerForSettled(l) : s;
|
|
40
|
+
if (!e) {
|
|
41
|
+
_.current = i;
|
|
38
42
|
return;
|
|
39
43
|
}
|
|
40
|
-
let
|
|
41
|
-
|
|
42
|
-
},
|
|
43
|
-
runId: `${
|
|
44
|
-
conversationId:
|
|
44
|
+
let b = (e) => {
|
|
45
|
+
d(f, e);
|
|
46
|
+
}, x = m && t ? {
|
|
47
|
+
runId: `${m}:${t}`,
|
|
48
|
+
conversationId: m,
|
|
45
49
|
messageId: t,
|
|
46
|
-
|
|
50
|
+
...v
|
|
47
51
|
} : null;
|
|
48
|
-
|
|
49
|
-
runId:
|
|
50
|
-
tr:
|
|
52
|
+
x && y.current?.runId !== x.runId && (y.current = {
|
|
53
|
+
runId: x.runId,
|
|
54
|
+
tr: p
|
|
51
55
|
});
|
|
52
|
-
let
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
let S = x ? y.current?.tr ?? p : p, { steps: C, text: w } = g ? r(g) : {
|
|
57
|
+
steps: [],
|
|
58
|
+
text: ""
|
|
59
|
+
}, { events: T, state: E } = o(_.current, {
|
|
60
|
+
run: x,
|
|
61
|
+
conversationId: m,
|
|
62
|
+
status: u,
|
|
63
|
+
content: w,
|
|
64
|
+
steps: C,
|
|
65
|
+
error: h?.error ?? null,
|
|
66
|
+
isFiller: (e) => n(S, e)
|
|
59
67
|
});
|
|
60
|
-
|
|
61
|
-
for (let
|
|
68
|
+
_.current = E;
|
|
69
|
+
for (let e of T) b(e);
|
|
62
70
|
}, [
|
|
63
|
-
l,
|
|
64
|
-
d,
|
|
65
71
|
f,
|
|
66
|
-
|
|
67
|
-
|
|
72
|
+
m,
|
|
73
|
+
h,
|
|
74
|
+
g,
|
|
75
|
+
p
|
|
68
76
|
]);
|
|
69
77
|
}
|
|
70
78
|
//#endregion
|
|
71
|
-
export {
|
|
79
|
+
export { f as useAssistantPreviewBridge };
|
package/dist/shared-assistant.js
CHANGED
|
@@ -62,42 +62,47 @@ import { useDropdownEscape as pi } from "./shared/assistant/ui/useDropdownEscape
|
|
|
62
62
|
import { AssistantAttachmentButton as mi } from "./shared/assistant/ui/composer/AssistantAttachmentButton.js";
|
|
63
63
|
import { AssistantAttachmentChips as hi } from "./shared/assistant/ui/composer/AssistantAttachmentChips.js";
|
|
64
64
|
import { AssistantPreviewProvider as gi, useAssistantPreview as _i } from "./shared/assistant/preview/context.js";
|
|
65
|
-
import { IDLE_PREVIEW_STATE as vi,
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
|
|
65
|
+
import { IDLE_PREVIEW_STATE as vi, isRunningStatus as yi, nextPreviewEvents as bi } from "./shared/assistant/preview/previewTransitions.js";
|
|
66
|
+
import { IDLE_PREVIEW as xi, NO_OWNER as Si, applyPreviewEvent as Ci, createAssistantPreviewSurface as wi, currentPreviewOwner as Ti, runBelongsTo as Ei, sameOwner as Di } from "./shared/assistant/preview/surfaceState.js";
|
|
67
|
+
import { createRunIdentityCache as Oi, runIdentities as ki } from "./shared/assistant/preview/runIdentity.js";
|
|
68
|
+
import { IDLE_ACTIVE_TAB as Ai, nextActiveTab as ji, pinActiveTab as Mi, stepsFromToolActivity as Ni, tabForArrowKey as Pi } from "./shared/assistant/preview/entity/entityPreviewState.js";
|
|
69
|
+
import { AssistantStepRail as Fi } from "./shared/assistant/preview/entity/AssistantStepRail.js";
|
|
70
|
+
import { AssistantEntityPreview as Ii } from "./shared/assistant/preview/entity/AssistantEntityPreview.js";
|
|
71
|
+
import { useOverlayFocus as Li } from "./shared/assistant/ui/useOverlayFocus.js";
|
|
72
|
+
import { useAssistantPreviewBridge as Ri } from "./shared/assistant/preview/useAssistantPreviewBridge.js";
|
|
73
|
+
import { AssistantPreviewOverlay as zi } from "./shared/assistant/preview/AssistantPreviewOverlay.js";
|
|
74
|
+
import { AssistantLanguageSelector as Bi, FOLLOW_APP_LOCALE as Vi } from "./shared/assistant/ui/composer/AssistantLanguageSelector.js";
|
|
75
|
+
import { ASSISTANT_MODE_META as Hi, AssistantModeSelector as Ui, nextModeIndex as Wi } from "./shared/assistant/ui/composer/AssistantModeSelector.js";
|
|
76
|
+
import { AssistantVoiceButton as Gi } from "./shared/assistant/ui/composer/AssistantVoiceButton.js";
|
|
77
|
+
import { AUTO_VOICE as Ki, AssistantVoiceSelector as qi } from "./shared/assistant/ui/composer/AssistantVoiceSelector.js";
|
|
78
|
+
import { AssistantVoiceOrb as Ji } from "./shared/assistant/ui/voice/AssistantVoiceOrb.js";
|
|
79
|
+
import { AssistantVoiceSessionButton as Yi } from "./shared/assistant/ui/voice/AssistantVoiceSessionButton.js";
|
|
80
|
+
import { CAPTION_SCROLL_ATTR as Xi, VoiceCaption as Zi } from "./shared/assistant/ui/voice/VoiceCaption.js";
|
|
81
|
+
import { VoiceConversationView as Qi } from "./shared/assistant/ui/voice/VoiceConversationView.js";
|
|
82
|
+
import { VoiceWaveform as $i } from "./shared/assistant/ui/voice/VoiceWaveform.js";
|
|
83
|
+
import { VoiceMiniController as ea } from "./shared/assistant/ui/voice/VoiceMiniController.js";
|
|
84
|
+
import { VoiceStage as ta } from "./shared/assistant/ui/voice/VoiceStage.js";
|
|
85
|
+
import { VoiceTranscriptDrawer as na } from "./shared/assistant/ui/voice/VoiceTranscriptDrawer.js";
|
|
86
|
+
import { downloadFile as ra, exportConversation as ia } from "./shared/assistant/exportConversation.js";
|
|
87
|
+
import { AssistantMoreMenu as aa } from "./shared/assistant/ui/AssistantMoreMenu.js";
|
|
88
|
+
import { AssistantHeader as oa } from "./shared/assistant/ui/AssistantHeader.js";
|
|
89
|
+
import { AssistantConversationList as sa } from "./shared/assistant/ui/AssistantConversationList.js";
|
|
90
|
+
import { AssistantEmptyState as ca } from "./shared/assistant/ui/AssistantEmptyState.js";
|
|
91
|
+
import { AssistantMessageItem as la } from "./shared/assistant/ui/AssistantMessageItem.js";
|
|
92
|
+
import { AssistantMessageList as ua } from "./shared/assistant/ui/AssistantMessageList.js";
|
|
93
|
+
import { AssistantVoiceSession as da } from "./shared/assistant/ui/voice/AssistantVoiceSession.js";
|
|
94
|
+
import { useAssistantApiAccess as fa } from "./shared/assistant/useAssistantApiAccess.js";
|
|
95
|
+
import { useConversationTurns as pa } from "./shared/assistant/useConversationTurns.js";
|
|
96
|
+
import { isMultimodalBodyRejection as ma, isRecoverableAssistantError as ha } from "./shared/assistant/transportErrors.js";
|
|
97
|
+
import { aiCreditsUpdatedEventName as ga, dispatchAssistantQuotaExhausted as _a, notifyAiCreditsUpdated as va } from "./shared/assistant/aiCredits.js";
|
|
98
|
+
import { useWorkspaceWriteAccess as ya } from "./shared/assistant/useWorkspaceWriteAccess.js";
|
|
99
|
+
import { extractDocumentText as ba } from "./shared/assistant/documentExtract.js";
|
|
100
|
+
import { useAssistantAttachments as xa } from "./shared/assistant/useAssistantAttachments.js";
|
|
101
|
+
import { AssistantComposer as Sa } from "./shared/assistant/ui/composer/AssistantComposer.js";
|
|
102
|
+
import { isProdRuntime as Ca } from "./shared/assistant/env.js";
|
|
103
|
+
import { useAssistantHeartbeat as wa } from "./shared/assistant/useAssistantHeartbeat.js";
|
|
104
|
+
import { useAssistantKeyboardShortcuts as Ta } from "./shared/assistant/useAssistantKeyboardShortcuts.js";
|
|
105
|
+
import { AssistantApiCallsConsentDialog as Ea } from "./shared/assistant/ui/AssistantApiCallsConsentDialog.js";
|
|
106
|
+
import { AssistantChatArea as Da } from "./shared/assistant/ui/AssistantChatArea.js";
|
|
107
|
+
import { AIAssistantPanel as Oa } from "./shared/assistant/ui/AIAssistantPanel.js";
|
|
108
|
+
export { Oa as AIAssistantPanel, L as ASSISTANT_API_AUTH_STRATEGY, sn as ASSISTANT_LANGUAGES, Hi as ASSISTANT_MODE_META, ii as ASSISTANT_OVERLAY_ATTR, ai as ASSISTANT_PANEL_ATTR, Kn as ATTACHMENT_ACCEPT, Hr as ATTACHMENT_SOURCES, Ki as AUTO_VOICE, Ea as AssistantApiCallsConsentDialog, mi as AssistantAttachmentButton, hi as AssistantAttachmentChips, Jr as AssistantAutoSpeakToggle, Da as AssistantChatArea, Sa as AssistantComposer, ri as AssistantConnectSourceItem, ti as AssistantConnectSourceProvider, sa as AssistantConversationList, ca as AssistantEmptyState, Ii as AssistantEntityPreview, oa as AssistantHeader, s as AssistantI18nProvider, Zr as AssistantLanguageMenu, Bi as AssistantLanguageSelector, f as AssistantMarkdownImage, h as AssistantMarkdownRenderer, Yr as AssistantMessageAttachments, la as AssistantMessageItem, ua as AssistantMessageList, Ui as AssistantModeSelector, aa as AssistantMoreMenu, g as AssistantNavigateProvider, Xr as AssistantPendingWriteCard, zi as AssistantPreviewOverlay, gi as AssistantPreviewProvider, t as AssistantProductProvider, Qr as AssistantReplyLanguageSelector, _e as AssistantRuntimeManager, $r as AssistantSpeakButton, Ir as AssistantSpeechProvider, ei as AssistantSpokenTurnsNotice, Fi as AssistantStepRail, Pr as AssistantToolActivity, Gi as AssistantVoiceButton, Ji as AssistantVoiceOrb, qi as AssistantVoiceSelector, da as AssistantVoiceSession, Yi as AssistantVoiceSessionButton, qn as AttachmentRejectedError, En as BOILERPLATE_PAGE_SHARE, Xi as CAPTION_SCROLL_ATTR, O as CHECK_AI_CREDITS, k as CREATE_SANDBOX, zt as DEFAULT_SPEAKABLE_LABELS, cn as DEFAULT_SPEECH_RATE, ft as ENDPOINT_GRACE_MS, A as EXTEND_SANDBOX_TTL, Vi as FOLLOW_APP_LOCALE, j as GET_ACTIVE_SANDBOXES, M as GET_SANDBOX, He as HOSTED_TTS_MAX_CHARS, Re as HOSTED_TTS_TIER, ze as HOSTED_VOICES, Ai as IDLE_ACTIVE_TAB, yn as IDLE_PLAYBACK, xi as IDLE_PREVIEW, vi as IDLE_PREVIEW_STATE, pt as INITIAL_SESSION, Jn as INLINE_IMAGE_MAX_DIM, Yn as INLINE_IMAGE_QUALITY, mt as INTERRUPT_MAX_MS, ht as INTERRUPT_MIN_MS, Xn as MAX_ATTACHMENTS, Dn as MAX_BOILERPLATE_LINE_CHARS, On as MAX_EXTRACTED_CHARS, Zn as MAX_FILE_BYTES, Qn as MAX_INLINE_CHARS_PER_FILE, $n as MAX_INLINE_CHARS_TOTAL, wn as MAX_INLINE_IMAGE_BASE64_BYTES, er as MAX_INLINE_IMAGE_BASE64_CHARS, tr as MAX_INLINE_IMAGE_PARTS, nr as MAX_INLINE_TURN_BODY_BYTES, kn as MAX_PDF_PAGES_SCANNED, Tn as MAX_REQUEST_BODY_BYTES, Bt as MAX_SPEAKABLE_CHARS, Vt as MAX_SPOKEN_TABLE_ROWS, rr as MAX_TURN_BODY_BYTES, Zt as MINI_CAPTION_BUDGET, An as MIN_PAGE_TEXT_CHARS, jn as MIN_TEXT_PAGE_SHARE, Si as NO_OWNER, oi as NO_PANEL_OVERLAY, Dr as PHRASE_ROTATE_MS, $t as POLL_FAST_MS, en as POLL_FAST_UNTIL_MS, tn as POLL_SLOW_MS, nn as POLL_STEADY_MS, rn as POLL_STEADY_UNTIL_MS, Yt as PREVIEW_LANGUAGES, ir as PROMPT_ENVELOPE_RESERVE_BYTES, N as PROXY_SANDBOX_REQUEST, P as REPORT_AI_TOKEN_USAGE, Gr as SANDBOX_READY_TTL_MS, gt as SILENCE_SUBMIT_MS, Ue as SPEAKING_RATE_MAX, We as SPEAKING_RATE_MAX_STREAMING, Ge as SPEAKING_RATE_MAX_SYNC, Ke as SPEAKING_RATE_MIN, Ht as SPEECH_CHUNK_CHARS, Ut as SPEECH_CHUNK_CJK_CHARS, wt as SPEECH_LANG, hn as SPOKEN_LABEL_LANGUAGES, Or as STAGE_COPY, F as STOP_ASSISTANT_SANDBOX, kr as THINKING_PHRASES, ar as TURN_BODY_HEADROOM_BYTES, Tt as VOICE_LIST_TIMEOUT_MS, Zi as VoiceCaption, Qi as VoiceConversationView, ea as VoiceMiniController, ta as VoiceStage, na as VoiceTranscriptDrawer, $i as VoiceWaveform, I as WAIT_FOR_SANDBOX_RUNNING, q as abortAssistantTurn, si as activePanelOverlay, ga as aiCreditsUpdatedEventName, Ci as applyPreviewEvent, J as approvePendingWrite, ci as assistantPanelOwnsEscape, _ as assistantRoutePath, c as assistantTranslationKey, v as assistantUrlTransform, Ur as availableAttachmentSources, qe as base64ToBytes, y as browserShouldHandle, Le as browserSpeechEngine, Y as buildAssistantSandboxEnv, or as buildAttachmentPromptBlock, It as buildContinuedFromVoiceNote, ve as buildProgress, sr as buildPromptParts, X as buildPromptRequestBody, cr as buildPromptWithAttachments, Je as buildRequest, E as buildSandboxContextInput, Lt as buildVoiceTranscriptMarkdown, Ae as chatTurns, Z as checkAssistantAiCredits, Wt as chunkForSpeech, b as classifyAssistantHref, lr as classifyAttachment, Ye as classifyHttpFailure, S as classifyQuotaError, Mn as columnLetterToIndex, tt as configureSpeechEngine, Gt as containsCjk, d as copyToClipboard, ur as countInlineImageCandidates, dr as countInlinedImageParts, wi as createAssistantPreviewSurface, Q as createAssistantSandbox, $ as createAssistantSession, $e as createHostedTtsEngine, Kr as createReadinessTracker, et as createRoutingSpeechEngine, Oi as createRunIdentityCache, Oe as createSandboxAssistantTransport, nt as createSpeechEngines, Ti as currentPreviewOwner, Xe as decodeAudioResponse, Nn as decodeXmlEntities, C as describeQuotaError, fr as detectDocumentFormat, _n as detectScriptLocale, Wr as deviceHasCamera, _a as dispatchAssistantQuotaExhausted, Pn as docxXmlToText, ee as downloadAssistantArtifact, ra as downloadFile, li as escapeDismisses, pr as estimateTurnBodyBytes, D as executeSandboxGraphQL, ia as exportConversation, te as extendAssistantSandboxTTL, ba as extractDocumentText, ln as findAssistantLanguage, ne as findExistingSandbox, pn as findPendingWrite, Fn as fitPdfPages, ui as focusIsInsidePanel, mr as formatBytes, In as formatPageRanges, zr as getActorId, re as getAssistantArtifacts, ye as getAssistantMedia, ie as getAssistantMessages, ae as getAssistantSession, oe as getAssistantStreamAccess, be as getAssistantText, hr as getAttachmentSendBlocker, U as getCapability, gr as getExtension, R as getImageForMode, z as getImageTagForMode, Br as getOrganizationId, xe as getRawMessageCreatedAt, B as getResourcesForMode, V as getSandboxImageRegistry, _r as getSendableAttachments, rt as getSpeechEngine, Se as getToolProgress, Vr as getWorkspaceId, je as groupBySession, Me as groupConsecutiveBySession, vr as hasAttachmentWorkInFlight, Be as hostedLocaleFor, Ve as hostedSupportsLanguage, p as imageHostLabel, _t as isCapturing, vt as isEcho, Ln as isMostlyImagePages, ma as isMultimodalBodyRejection, Ca as isProdRuntime, w as isQuotaExhaustedError, Ce as isReapedSandboxConnectionError, qr as isRecentlyVerified, we as isRecoverable, ha as isRecoverableAssistantError, m as isRemoteImageSrc, yi as isRunningStatus, bn as isSpeakingMessage, Et as isSpeechBlocked, Ar as isStageCopy, yt as isSubmittable, wr as isTurnInFlight, W as isUnknownFieldError, Ne as isVoiceTurn, Rn as joinSheets, Dt as languageDisplayName, Te as mapSessionToHistory, G as markSupported, K as markUnsupported, Ee as mergeMessagesById, ot as micIsInterrupt, se as modeRequiresConfirmWrites, ji as nextActiveTab, Wi as nextModeIndex, di as nextPanelOverlays, bi as nextPreviewEvents, Ot as normalizeLangTag, va as notifyAiCreditsUpdated, bt as orbMode, zn as pageMarker, fi as panelOwnsEscape, mn as parseConfirmationRefusal, yr as parseDataUrl, Bn as parseSharedStrings, Fr as parseToolActivity, Vn as parseWorkbookSheets, Hn as pdfTextItemsToPage, Mi as pinActiveTab, Tr as planAbandonedTurn, xt as planReplyConsumption, Er as planTurnAbort, an as pollDelayMs, kt as primaryLanguageSubtag, xn as publishedChunks, T as quotaExhaustedEventName, it as readSpeechEngineConfig, ce as releaseSupersededAssistantSandboxes, dn as replyFollowsInput, le as reportAssistantAiTokenUsage, Sn as requiresCancel, at as resetSpeechEngine, un as resolveAssistantLanguage, fn as resolveLanguagePair, n as resolveModeConfig, H as resolveSandboxAssistantMode, vn as resolveSpeechLocale, Ei as runBelongsTo, ki as runIdentities, Di as sameOwner, De as sanitize, ue as selectExistingAssistantSandbox, de as selectSupersededAssistantSandboxes, At as selectVoiceForLocale, fe as sendAssistantPromptAsync, pe as sendHeartbeat, Un as sheetXmlToRows, Ze as shouldDisableEngine, Qt as showPreviousChunk, st as showsAssistantCaption, ct as showsUserCaption, Kt as speakableEmail, jt as speechGate, gn as speechLabelsFor, Mt as speechLangForLocale, Cn as speechPlaybackReducer, Qe as splitForVendor, qt as splitTableRow, St as spokenSoFar, jr as stageText, Mr as statusStageCopy, Ni as stepsFromToolActivity, me as stopReapedAssistantSandbox, Wn as summarisePageText, Pi as tabForArrowKey, Nr as thinkingPhrase, on as toCaptionText, br as toMessageAttachment, Jt as toSpeakableText, xr as truncateForInline, Gn as truncatePagesForInline, fa as useAssistantApiAccess, xa as useAssistantAttachments, ni as useAssistantConnectSource, wa as useAssistantHeartbeat, l as useAssistantI18nNamespace, Ta as useAssistantKeyboardShortcuts, x as useAssistantNavigate, r as useAssistantPageLabel, _i as useAssistantPreview, Ri as useAssistantPreviewBridge, i as useAssistantProduct, a as useAssistantProductOrNull, Lr as useAssistantSpeech, o as useAssistantStorageFolders, Cr as useAssistantStore, u as useAssistantTr, pa as useConversationTurns, pi as useDropdownEscape, Li as useOverlayFocus, ke as useSandboxAssistantTransport, e as useVoiceInput, Rr as useVoiceSession, ya as useWorkspaceWriteAccess, Sr as validateFile, Nt as voiceAvailability, Pe as voiceMarker, Xt as voicePreviewText, Pt as voiceQualityRank, Fe as voiceSessionIdOf, Ct as voiceSessionReducer, lt as voiceStageState, Rt as voiceTranscriptFilename, Ie as voiceTurnsOnly, Ft as voicesForLocale, he as waitForAssistantServiceReady, ge as waitForSandboxRunning, ut as waveformIsActive, dt as waveformIsSettled };
|