@deep-eye/core 1.2.99 → 1.3.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/CHANGELOG.md +63 -0
- package/README.md +1 -1
- package/dist/chat-token.css +226 -0
- package/dist/components/chat/ChatApp.vue.d.ts +150 -0
- package/dist/components/chat/ChatApp.vue.d.ts.map +1 -0
- package/dist/components/chat/ChatBot.vue.d.ts +12 -1
- package/dist/components/chat/ChatBot.vue.d.ts.map +1 -1
- package/dist/components/chat/attachments.d.ts +3 -1
- package/dist/components/chat/attachments.d.ts.map +1 -1
- package/dist/components/chat/chatContext.d.ts +3 -2
- package/dist/components/chat/chatContext.d.ts.map +1 -1
- package/dist/components/chat/chatSessionSidebarAssets.d.ts +21 -0
- package/dist/components/chat/chatSessionSidebarAssets.d.ts.map +1 -0
- package/dist/components/chat/chatSessionSidebarTypes.d.ts +59 -0
- package/dist/components/chat/chatSessionSidebarTypes.d.ts.map +1 -0
- package/dist/components/chat/cloudConfig.d.ts +84 -0
- package/dist/components/chat/cloudConfig.d.ts.map +1 -0
- package/dist/components/chat/components/ArtifactList.vue.d.ts +14 -0
- package/dist/components/chat/components/ArtifactList.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatHistorySearchDialog.vue.d.ts +33 -0
- package/dist/components/chat/components/ChatHistorySearchDialog.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatProvider.vue.d.ts +10 -7
- package/dist/components/chat/components/ChatProvider.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ChatSender.vue.d.ts +16 -4
- package/dist/components/chat/components/ChatSender.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ChatSessionExpandHistoryCard.vue.d.ts +30 -0
- package/dist/components/chat/components/ChatSessionExpandHistoryCard.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionLoadingDots.vue.d.ts +11 -0
- package/dist/components/chat/components/ChatSessionLoadingDots.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionOverflowTooltip.vue.d.ts +22 -0
- package/dist/components/chat/components/ChatSessionOverflowTooltip.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionSidebar.vue.d.ts +76 -0
- package/dist/components/chat/components/ChatSessionSidebar.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionSkeleton.vue.d.ts +6 -0
- package/dist/components/chat/components/ChatSessionSkeleton.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSessionStatusMark.vue.d.ts +15 -0
- package/dist/components/chat/components/ChatSessionStatusMark.vue.d.ts.map +1 -0
- package/dist/components/chat/components/ChatSkillPanel.vue.d.ts +4 -3
- package/dist/components/chat/components/ChatSkillPanel.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ChatTipMenu.vue.d.ts +19 -5
- package/dist/components/chat/components/ChatTipMenu.vue.d.ts.map +1 -1
- package/dist/components/chat/components/ConversationList.vue.d.ts.map +1 -1
- package/dist/components/chat/components/document-viewer/html/HtmlRenderer.vue.d.ts.map +1 -1
- package/dist/components/chat/components/document-viewer/screenshotCapture.d.ts +3 -2
- package/dist/components/chat/components/document-viewer/screenshotCapture.d.ts.map +1 -1
- package/dist/components/chat/components/index.d.ts +4 -1
- package/dist/components/chat/components/index.d.ts.map +1 -1
- package/dist/components/chat/composables/chatApiRequest.d.ts +39 -0
- package/dist/components/chat/composables/chatApiRequest.d.ts.map +1 -0
- package/dist/components/chat/composables/chatHistoryApi.d.ts +41 -0
- package/dist/components/chat/composables/chatHistoryApi.d.ts.map +1 -0
- package/dist/components/chat/composables/chatSessionId.d.ts +8 -0
- package/dist/components/chat/composables/chatSessionId.d.ts.map +1 -0
- package/dist/components/chat/composables/useChatNewSessionEpoch.d.ts +3 -0
- package/dist/components/chat/composables/useChatNewSessionEpoch.d.ts.map +1 -0
- package/dist/components/chat/composables/useChatSessionHistory.d.ts +56 -0
- package/dist/components/chat/composables/useChatSessionHistory.d.ts.map +1 -0
- package/dist/components/chat/composables/useChatSessionSwitch.d.ts +22 -0
- package/dist/components/chat/composables/useChatSessionSwitch.d.ts.map +1 -0
- package/dist/components/chat/composables/useChatSkillTipMenu.d.ts.map +1 -1
- package/dist/components/chat/composables/useChatTipMenu.d.ts +18 -11
- package/dist/components/chat/composables/useChatTipMenu.d.ts.map +1 -1
- package/dist/components/chat/composables/useHistoryGroupExpand.d.ts +14 -0
- package/dist/components/chat/composables/useHistoryGroupExpand.d.ts.map +1 -0
- package/dist/components/chat/htmlPreview.d.ts +9 -0
- package/dist/components/chat/htmlPreview.d.ts.map +1 -1
- package/dist/components/chat/icons/ChatArtifactFilesIcon.vue.d.ts +9 -0
- package/dist/components/chat/icons/ChatArtifactFilesIcon.vue.d.ts.map +1 -0
- package/dist/components/chat/icons/ChatTipMenuAssetIcon.vue.d.ts +10 -0
- package/dist/components/chat/icons/ChatTipMenuAssetIcon.vue.d.ts.map +1 -0
- package/dist/components/chat/icons/ChatTipMenuExpertIcon.vue.d.ts +7 -0
- package/dist/components/chat/icons/ChatTipMenuExpertIcon.vue.d.ts.map +1 -0
- package/dist/components/chat/icons/ChatTipMenuKnowledgeIcon.vue.d.ts +7 -0
- package/dist/components/chat/icons/ChatTipMenuKnowledgeIcon.vue.d.ts.map +1 -0
- package/dist/components/chat/icons/ChatTipMenuSkillIcon.vue.d.ts +7 -0
- package/dist/components/chat/icons/ChatTipMenuSkillIcon.vue.d.ts.map +1 -0
- package/dist/components/chat/icons/index.d.ts +5 -0
- package/dist/components/chat/icons/index.d.ts.map +1 -1
- package/dist/components/chat/icons/tipMenuItemIcons.d.ts +25 -0
- package/dist/components/chat/icons/tipMenuItemIcons.d.ts.map +1 -0
- package/dist/components/chat/index.d.ts +16 -4
- package/dist/components/chat/index.d.ts.map +1 -1
- package/dist/components/chat/mdoc/ArtifactBlock.vue.d.ts +4 -1
- package/dist/components/chat/mdoc/ArtifactBlock.vue.d.ts.map +1 -1
- package/dist/components/chat/mdoc/ArtifactStack.vue.d.ts +13 -0
- package/dist/components/chat/mdoc/ArtifactStack.vue.d.ts.map +1 -0
- package/dist/components/chat/mdoc/ContentNodes.vue.d.ts.map +1 -1
- package/dist/components/chat/mdoc/artifactOpenStrategy.d.ts +1 -1
- package/dist/components/chat/mdoc/artifactOpenStrategy.d.ts.map +1 -1
- package/dist/components/chat/mdoc/artifactStack.d.ts +17 -0
- package/dist/components/chat/mdoc/artifactStack.d.ts.map +1 -0
- package/dist/components/chat/mdoc/index.d.ts +2 -0
- package/dist/components/chat/mdoc/index.d.ts.map +1 -1
- package/dist/components/chat/mdoc/sessionArtifacts.d.ts +20 -0
- package/dist/components/chat/mdoc/sessionArtifacts.d.ts.map +1 -0
- package/dist/components/chat/mentionEditor.d.ts +7 -2
- package/dist/components/chat/mentionEditor.d.ts.map +1 -1
- package/dist/components/chat/sidebarMotion.d.ts +5 -0
- package/dist/components/chat/sidebarMotion.d.ts.map +1 -1
- package/dist/components/chat/types.d.ts +124 -19
- package/dist/components/chat/types.d.ts.map +1 -1
- package/dist/components/chat/utils/tipMenuBuiltin.d.ts +2 -0
- package/dist/components/chat/utils/tipMenuBuiltin.d.ts.map +1 -0
- package/dist/components/skill/api/skillCloudUrl.d.ts.map +1 -1
- package/dist/components/skill/avatarThumb.d.ts +14 -0
- package/dist/components/skill/avatarThumb.d.ts.map +1 -0
- package/dist/components/skill/components/ChatSkillCard.vue.d.ts +2 -1
- package/dist/components/skill/components/ChatSkillCard.vue.d.ts.map +1 -1
- package/dist/components/skill/components/ChatSkillCardSkeleton.vue.d.ts.map +1 -1
- package/dist/components/skill/components/ChatSkillDetailDialog.vue.d.ts +2 -1
- package/dist/components/skill/components/ChatSkillDetailDialog.vue.d.ts.map +1 -1
- package/dist/components/skill/formatSkillUsageCount.d.ts +3 -0
- package/dist/components/skill/formatSkillUsageCount.d.ts.map +1 -0
- package/dist/components/skill/index.d.ts +1 -0
- package/dist/components/skill/index.d.ts.map +1 -1
- package/dist/components/skill/quickActionAvatarIcon.d.ts +25 -0
- package/dist/components/skill/quickActionAvatarIcon.d.ts.map +1 -0
- package/dist/components/skill/skillCardModel.d.ts.map +1 -1
- package/dist/components/skill/types.d.ts +23 -0
- package/dist/components/skill/types.d.ts.map +1 -1
- package/dist/components/ui/components/UiDialog.vue.d.ts +15 -2
- package/dist/components/ui/components/UiDialog.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiDropdown.vue.d.ts +63 -0
- package/dist/components/ui/components/UiDropdown.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiImage.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiMenu.vue.d.ts +19 -2
- package/dist/components/ui/components/UiMenu.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiMenuColumn.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiMenuNestedSubmenu.vue.d.ts +57 -0
- package/dist/components/ui/components/UiMenuNestedSubmenu.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiMenuSubmenuColumn.vue.d.ts +14 -4
- package/dist/components/ui/components/UiMenuSubmenuColumn.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiMenuSubmenuList.vue.d.ts +26 -0
- package/dist/components/ui/components/UiMenuSubmenuList.vue.d.ts.map +1 -0
- package/dist/components/ui/components/UiSearchInput.vue.d.ts +5 -1
- package/dist/components/ui/components/UiSearchInput.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiSkeleton.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiTabs.vue.d.ts.map +1 -1
- package/dist/components/ui/components/index.d.ts +1 -0
- package/dist/components/ui/components/index.d.ts.map +1 -1
- package/dist/components/ui/composables/floatingPosition.d.ts +26 -0
- package/dist/components/ui/composables/floatingPosition.d.ts.map +1 -0
- package/dist/components/ui/composables/index.d.ts +6 -1
- package/dist/components/ui/composables/index.d.ts.map +1 -1
- package/dist/components/ui/composables/useUiDropdown.d.ts +48 -0
- package/dist/components/ui/composables/useUiDropdown.d.ts.map +1 -0
- package/dist/components/ui/composables/useUiMenuFloating.d.ts +44 -0
- package/dist/components/ui/composables/useUiMenuFloating.d.ts.map +1 -0
- package/dist/components/ui/index.d.ts +1 -0
- package/dist/components/ui/index.d.ts.map +1 -1
- package/dist/components/ui/types.d.ts +68 -3
- package/dist/components/ui/types.d.ts.map +1 -1
- package/dist/components/ui/utils/index.d.ts +3 -0
- package/dist/components/ui/utils/index.d.ts.map +1 -0
- package/dist/components/ui/utils/mapDropdownMenuItems.d.ts +13 -0
- package/dist/components/ui/utils/mapDropdownMenuItems.d.ts.map +1 -0
- package/dist/components/ui/utils/menuSubmenu.d.ts +6 -0
- package/dist/components/ui/utils/menuSubmenu.d.ts.map +1 -0
- package/dist/{index-DBs0MjQj.cjs → index-3wz4qeyb.cjs} +1 -1
- package/dist/{index-BdKHWE9q.js → index-BIox_qiB.js} +1 -1
- package/dist/{index-BMtOprb0.js → index-CjA2XNLg.js} +1 -1
- package/dist/{index-Cfa1rWQg.js → index-CsRsThr2.js} +32207 -28832
- package/dist/{index-xHxkbtlb.cjs → index-DY7BybEW.cjs} +1 -1
- package/dist/{index-D-sSuThI.cjs → index-Q0cTvKh-.cjs} +221 -212
- package/dist/index.cjs +1 -1
- package/dist/index.js +324 -273
- package/dist/style.css +2 -2
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -1,281 +1,332 @@
|
|
|
1
|
-
import { A as t, a as o, b as
|
|
1
|
+
import { A as t, a as o, b as i, d as n, B as r, C as d, e as l, f as c, h as T, i as p, j as u, k as A, l as C, m as S, n as h, o as M, p as _, q as m, r as b, s as I, _ as P, t as L, u as E, v as U, w as R, x as D, y as g, z as N, D as F, E as k, F as f, G as v, H as O, I as H, J as y, K as B, L as x, M as w, N as G, O as K, P as Y, Q as V, R as Q, U as X, S as z, T as W, V as Z, W as j, X as q, Y as J, Z as $, $ as aa, a0 as ea, a1 as sa, a2 as ta, a3 as oa, a4 as ia, a5 as na, a6 as ra, a7 as da, a8 as la, a9 as ca, aa as Ta, ab as pa, ac as ua, ad as Aa, ae as Ca, af as Sa, ag as ha, ah as Ma, ai as _a, aj as ma, ak as ba, al as Ia, am as Pa, an as La, ao as Ea, ap as Ua, aq as Ra, ar as Da, as as ga, at as Na, au as Fa, av as ka, aw as fa, ax as va, ay as Oa, az as Ha, aA as ya, aB as Ba, aC as xa, aD as wa, aE as Ga, aF as Ka, aG as Ya, aH as Va, aI as Qa, aJ as Xa, _ as za, aK as Wa, aL as Za, aM as ja, aN as qa, aO as Ja, aP as $a, aQ as ae, U as ee, aR as se, Y as te, aS as oe, aT as ie, aU as ne, aV as re, aW as de, aX as le, aY as ce, aZ as Te, a_ as pe, a$ as ue, b0 as Ae, b1 as Ce, b2 as Se, b3 as he, b4 as Me, b5 as _e, b6 as me, b7 as be, b8 as Ie, b9 as Pe, ba as Le, bb as Ee, bc as Ue, bd as Re, be as De, bf as ge, bg as Ne, bh as Fe, bi as ke, bj as fe, bk as ve, bl as Oe, bm as He, bn as ye, bo as Be, bp as xe, bq as we, br as Ge, bs as Ke, bt as Ye, bu as Ve, bv as Qe, bw as Xe, bx as ze, by as We, bz as Ze, bA as je, bB as qe, bC as Je, bD as $e, bE as as, bF as es, bG as ss, bH as ts, bI as os, bJ as is, bK as ns, bL as rs, bM as ds, bN as ls, bO as cs, bP as Ts, bQ as ps, bR as us, bS as As, bT as Cs, bU as Ss, bV as hs, bW as Ms, bX as _s, bY as ms, bZ as bs, b_ as Is, b$ as Ps, c0 as Ls, c1 as Es, c2 as Us, c3 as Rs, c4 as Ds, c5 as gs, c6 as Ns, c7 as Fs, c8 as ks, c9 as fs, ca as vs, cb as Os, cc as Hs, cd as ys, ce as Bs, cf as xs, cg as ws, ch as Gs, ci as Ks, cj as Ys, ck as Vs, cl as Qs, cm as Xs, cn as zs, co as Ws, cp as Zs, cq as js, cr as qs, cs as Js, ct as $s, cu as at, cv as et, cw as st, cx as tt, cy as ot, cz as it, cA as nt, cB as rt, cC as dt, cD as lt, cE as ct, cF as Tt, cG as pt, cH as ut, cI as At, cJ as Ct, cK as St, cL as ht, cM as Mt, cN as _t, cO as mt, cP as bt, cQ as It, cR as Pt, cS as Lt, cT as Et, cU as Ut, cV as Rt, cW as Dt, cX as gt, cY as Nt, cZ as Ft, c_ as kt, c$ as ft, d0 as vt, d1 as Ot, d2 as Ht, d3 as yt, d4 as Bt, d5 as xt, d6 as wt, d7 as Gt, d8 as Kt, d9 as Yt, da as Vt, db as Qt, dc as Xt, dd as zt, de as Wt, df as Zt, dg as jt, dh as qt, di as Jt, dj as $t, dk as ao, dl as eo, dm as so, dn as to, dp as oo, dq as io, dr as no, ds as ro, dt as lo, du as co, dv as To, dw as po, dx as uo, dy as Ao, dz as Co, dA as So, dB as ho, dC as Mo, dD as _o, dE as mo, dF as bo, dG as Io, dH as Po, dI as Lo, dJ as Eo, dK as Uo, dL as Ro, dM as Do, dN as go, dO as No, dP as Fo, dQ as ko, dR as fo, dS as vo, dT as Oo, dU as Ho, dV as yo, dW as Bo, dX as xo, dY as wo, dZ as Go, d_ as Ko, d$ as Yo, e0 as Vo, e1 as Qo, e2 as Xo, e3 as zo, e4 as Wo, e5 as Zo, e6 as jo, e7 as qo, e8 as Jo, e9 as $o, ea as ai, eb as ei, ec as si, ed as ti, ee as oi, ef as ii, eg as ni, eh as ri } from "./index-CsRsThr2.js";
|
|
2
2
|
import "vue";
|
|
3
3
|
export {
|
|
4
4
|
t as ACTION_BAR_ICON_NAMES,
|
|
5
5
|
o as ACTION_BAR_SYSTEM_PROMPT,
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
i as ARTIFACT_BLOCK_SYSTEM_PROMPT,
|
|
7
|
+
n as ASK_USER_FORM_SYSTEM_PROMPT,
|
|
8
|
+
r as BASICAGENT_DEFAULT_APP_ID,
|
|
9
|
+
d as CHART_BLOCK_SYSTEM_PROMPT,
|
|
10
|
+
l as CHART_TYPES,
|
|
11
11
|
c as CHAT_SKILL_ALL,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
12
|
+
T as CHAT_SKILL_CHANNEL_HOME,
|
|
13
|
+
p as CHAT_SKILL_CHANNEL_PLAZA,
|
|
14
|
+
u as CHAT_SKILL_MENU_DEFAULT_PARAMS,
|
|
15
|
+
A as CHAT_SKILL_MENU_LAZY_PAGE_SIZE,
|
|
16
|
+
C as CHAT_SKILL_MENU_PAGE_SIZE,
|
|
17
|
+
S as CHAT_SKILL_OPTION_HOT_DAILY,
|
|
18
18
|
h as CHAT_SKILL_PANEL_DEFAULT_PARAMS,
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
L as
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
R as
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
19
|
+
M as ChartToolRenderer,
|
|
20
|
+
_ as ChatActionbar,
|
|
21
|
+
m as ChatApp,
|
|
22
|
+
b as ChatAttachments,
|
|
23
|
+
I as ChatBot,
|
|
24
|
+
P as ChatDialog,
|
|
25
|
+
L as ChatFileCard,
|
|
26
|
+
E as ChatFilePreview,
|
|
27
|
+
U as ChatFilePreviewPanel,
|
|
28
|
+
R as ChatFollowUps,
|
|
29
|
+
D as ChatHistorySearchDialog,
|
|
30
|
+
g as ChatImageLightbox,
|
|
31
|
+
N as ChatMessage,
|
|
32
|
+
F as ChatPreviewSkeleton,
|
|
33
|
+
k as ChatProvider,
|
|
34
|
+
f as ChatQueue,
|
|
33
35
|
v as ChatReasoning,
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
Q as
|
|
45
|
-
X as
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
ra as
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
Ca as
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
Ma as
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
Pa as
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
va as
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
Qa as
|
|
99
|
-
Xa as
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
re as
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
Ce as
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
Me as
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
Pe as
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
ve as
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
Qe as
|
|
153
|
-
Xe as
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
rs as
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
Cs as
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
Ms as
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
Ps as
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
vs as
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
Qs as
|
|
207
|
-
Xs as
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
rt as
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
Ct as
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
Mt as
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
Pt as
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
vt as
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
Qt as
|
|
261
|
-
Xt as
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
ro as
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
36
|
+
O as ChatSender,
|
|
37
|
+
H as ChatSenderAppendIcon,
|
|
38
|
+
y as ChatSenderAtIcon,
|
|
39
|
+
B as ChatSenderCheckIcon,
|
|
40
|
+
x as ChatSenderClickIcon,
|
|
41
|
+
w as ChatSenderLinkIcon,
|
|
42
|
+
G as ChatSenderMicIcon,
|
|
43
|
+
K as ChatSenderMicOffIcon,
|
|
44
|
+
Y as ChatSenderMoreIcon,
|
|
45
|
+
V as ChatSessionSidebar,
|
|
46
|
+
Q as ChatSessionStatusMark,
|
|
47
|
+
X as ChatSkeletonItem,
|
|
48
|
+
z as ChatSkillCard,
|
|
49
|
+
W as ChatSkillCardSkeleton,
|
|
50
|
+
Z as ChatSkillDetailDialog,
|
|
51
|
+
j as ChatSkillEmpty,
|
|
52
|
+
q as ChatSkillPanel,
|
|
53
|
+
J as ChatSkillTabs,
|
|
54
|
+
$ as ChatTipMenu,
|
|
55
|
+
aa as ChatToolGroup,
|
|
56
|
+
ea as CodeToolRenderer,
|
|
57
|
+
sa as ConversationList,
|
|
58
|
+
ta as D3MindMap,
|
|
59
|
+
oa as DEFAULT_ABORT_URL,
|
|
60
|
+
ia as DEFAULT_CHAT_API_URL,
|
|
61
|
+
na as DEFAULT_CHAT_ATTACHMENT_LIMITS,
|
|
62
|
+
ra as DEFAULT_DROP_MAX_DISTANCE,
|
|
63
|
+
da as DEFAULT_HISTORY_FIND_BY_SESSION_URL,
|
|
64
|
+
la as DEFAULT_HISTORY_FIND_BY_USER_URL,
|
|
65
|
+
ca as DEFAULT_HISTORY_PAGE_SIZE,
|
|
66
|
+
Ta as DEFAULT_HISTORY_VIEWED_URL,
|
|
67
|
+
pa as DEFAULT_LAST_SESSION_URL,
|
|
68
|
+
ua as DEFAULT_MODEL_LIST_URL,
|
|
69
|
+
Aa as DEFAULT_RESUME_URL,
|
|
70
|
+
Ca as DEFAULT_SIDEBAR_NAV_ITEMS,
|
|
71
|
+
Sa as DEFAULT_SIDEBAR_PERSIST_KEY,
|
|
72
|
+
ha as DEFAULT_SIDEBAR_TEXTS,
|
|
73
|
+
Ma as DEFAULT_SKILL_AVATAR_THUMB,
|
|
74
|
+
_a as DRAG_THRESHOLD_PX,
|
|
75
|
+
ma as DocumentViewer,
|
|
76
|
+
ba as EXPAND_BUTTON_OFFSET,
|
|
77
|
+
Ia as EXPAND_BUTTON_RADIUS,
|
|
78
|
+
Pa as EmptyState,
|
|
79
|
+
La as FileReadToolRenderer,
|
|
80
|
+
Ea as MIND_MAP_NODE_HEIGHT,
|
|
81
|
+
Ua as MIND_MAP_PERIPHERAL_BTN_BASE,
|
|
82
|
+
Ra as MIND_MAP_PERIPHERAL_BTN_DEPTH,
|
|
83
|
+
Da as MessageBubble,
|
|
84
|
+
ga as MindMapToolRenderer,
|
|
85
|
+
Na as NODE_CONTENT_RECT_X,
|
|
86
|
+
Fa as NODE_RECT,
|
|
87
|
+
ka as OpenGenUIToolRenderer,
|
|
88
|
+
fa as OpenGenerativeUiChartRenderer,
|
|
89
|
+
va as OpenGenerativeUiPlanRenderer,
|
|
90
|
+
Oa as OpenGenerativeUiScheduleRenderer,
|
|
91
|
+
Ha as OpenGenerativeUiThemeRenderer,
|
|
92
|
+
ya as ProcessResultCard,
|
|
93
|
+
Ba as ProcessStepGroup,
|
|
94
|
+
xa as SKILL_API_PATH,
|
|
95
|
+
wa as SKILL_CLOUD_DEV_PREFIX,
|
|
96
|
+
Ga as SKILL_CLOUD_PATH,
|
|
97
|
+
Ka as SearchToolRenderer,
|
|
98
|
+
Ya as TRAILING_CONTENT_GAP,
|
|
99
|
+
Va as TextPartRenderer,
|
|
100
|
+
Qa as ThinkingOrb,
|
|
101
|
+
Xa as ToolCallPart,
|
|
102
|
+
za as UiDialog,
|
|
103
|
+
Wa as UiDropdown,
|
|
104
|
+
Za as UiImage,
|
|
105
|
+
ja as UiMenu,
|
|
106
|
+
qa as UiMenuColumn,
|
|
107
|
+
Ja as UiMenuSubmenuColumn,
|
|
108
|
+
$a as UiMenuSubmenuSkeleton,
|
|
109
|
+
ae as UiSearchInput,
|
|
110
|
+
ee as UiSkeleton,
|
|
111
|
+
se as UiSkeletonItem,
|
|
112
|
+
te as UiTabs,
|
|
113
|
+
oe as appendImageViewParams,
|
|
114
|
+
ie as applyInitialCollapse,
|
|
115
|
+
ne as applyMindMapFitInsets,
|
|
116
|
+
re as applyMindMapNodeDecorationFeatures,
|
|
117
|
+
de as applyMindMapTreeData,
|
|
118
|
+
le as artifactToChatResource,
|
|
119
|
+
ce as assertNever,
|
|
120
|
+
Te as buildAskUserFunctionCallOutput,
|
|
121
|
+
pe as buildChatSendPayload,
|
|
122
|
+
ue as buildCloudAuthHeaders,
|
|
123
|
+
Ae as buildDropdownItemClickPayload,
|
|
124
|
+
Ce as buildSkillApiUrl,
|
|
125
|
+
Se as buildTrailingLayoutSlots,
|
|
126
|
+
he as checkLastSession,
|
|
127
|
+
Me as classifyAttachment,
|
|
128
|
+
_e as classifyChatError,
|
|
129
|
+
me as classifyResourceFile,
|
|
130
|
+
be as clearNodeActions,
|
|
131
|
+
Ie as collectExpandedById,
|
|
132
|
+
Pe as collectMindMapSubtreeNodes,
|
|
133
|
+
Le as collectSessionArtifacts,
|
|
134
|
+
Ee as collectSubtreeIds,
|
|
135
|
+
Ue as collectVisibleMindMapNodes,
|
|
136
|
+
Re as colorfulTheme,
|
|
137
|
+
De as computeBezierLinkPath,
|
|
138
|
+
ge as computeMindMapFitTransform,
|
|
139
|
+
Ne as computeMindMapLayoutSpacing,
|
|
140
|
+
Fe as computeMindMapLinkPath,
|
|
141
|
+
ke as computeMindMapNodeScreenRect,
|
|
142
|
+
fe as computeMindMapNodeTreeBounds,
|
|
143
|
+
ve as computeMindMapNodeTreeBoundsWithPeripheral,
|
|
144
|
+
Oe as computeMindMapNodesTreeBounds,
|
|
145
|
+
He as computeMindMapPeripheralExtents,
|
|
146
|
+
ye as computeMindMapTreeBoundsScreenRect,
|
|
147
|
+
Be as computeSmoothStepLinkPath,
|
|
148
|
+
xe as computeStepLinkPath,
|
|
149
|
+
we as computeTrailingChromeWidth,
|
|
150
|
+
Ge as convertDatumToMindMapNode,
|
|
151
|
+
Ke as convertMindMapData,
|
|
152
|
+
Ye as convertReferenceMarkers,
|
|
153
|
+
Ve as convertToD3Tree,
|
|
154
|
+
Qe as createAttachmentFingerprint,
|
|
155
|
+
Xe as createBasicAgentCredentialHeaders,
|
|
156
|
+
ze as createChatAttachmentController,
|
|
157
|
+
We as createChatMessageId,
|
|
158
|
+
Ze as createMindMapPositionHelpers,
|
|
159
|
+
je as createNodePayload,
|
|
160
|
+
qe as createReferenceClickHandler,
|
|
161
|
+
Je as createSkillAxios,
|
|
162
|
+
$e as darkTheme,
|
|
163
|
+
as as debounce,
|
|
164
|
+
es as deepClone,
|
|
165
|
+
ss as defaultTheme,
|
|
166
|
+
ts as disposeAllNodeActionComponents,
|
|
167
|
+
os as disposeAllTrailingIconComponents,
|
|
168
|
+
is as disposeNodeActionComponent,
|
|
169
|
+
ns as disposeTrailingIconComponent,
|
|
170
|
+
rs as downloadArtifact,
|
|
171
|
+
ds as downloadBlob,
|
|
172
|
+
ls as editChatQueueItem,
|
|
173
|
+
cs as enqueueChatPayload,
|
|
174
|
+
Ts as escapeHtml,
|
|
175
|
+
ps as expandMindMapTreeBoundsPadding,
|
|
176
|
+
us as extractAskFormMdocFromToolCalls,
|
|
177
|
+
As as extractAskFormNodes,
|
|
178
|
+
Cs as extractAskUserFromToolCall,
|
|
179
|
+
Ss as extractAskUserFromToolCalls,
|
|
180
|
+
hs as extractAskUserQuestionsFromContent,
|
|
181
|
+
Ms as extractReferenceIndex,
|
|
182
|
+
_s as fetchAbortSession,
|
|
183
|
+
ms as fetchChatApi,
|
|
184
|
+
bs as fetchKnowledgeList,
|
|
185
|
+
Is as fetchModelList,
|
|
186
|
+
Ps as fetchPublishedScenes,
|
|
187
|
+
Ls as fetchPublishedScenesPage,
|
|
188
|
+
Es as fetchPublishedSkills,
|
|
189
|
+
Us as fetchPublishedSkillsAndScenes,
|
|
190
|
+
Rs as fetchPublishedSkillsPage,
|
|
191
|
+
Ds as fetchResume,
|
|
192
|
+
gs as fetchSkillTypes,
|
|
193
|
+
Ns as filterOutAskFormToolCalls,
|
|
194
|
+
Fs as filterOutAskUserToolCalls,
|
|
195
|
+
ks as filterVisibleMindMapPeripheralActions,
|
|
196
|
+
fs as findBySessionId,
|
|
197
|
+
vs as findByUserId,
|
|
198
|
+
Os as findNodeLocation,
|
|
199
|
+
Hs as findSiblingGapDropTarget,
|
|
200
|
+
ys as forceExpandAll,
|
|
201
|
+
Bs as formatAskUserAnswersLabel,
|
|
202
|
+
xs as formatAskUserBubbleLabel,
|
|
203
|
+
ws as formatDropdownSubmenuSelectionPath,
|
|
204
|
+
Gs as formatModelLabel,
|
|
205
|
+
Ks as formatModelPricingTooltip,
|
|
206
|
+
Ys as generateMindMapId,
|
|
207
|
+
Vs as generateObjectId,
|
|
208
|
+
Qs as getChatFileIconSrc,
|
|
209
|
+
Xs as getChatPreviewKind,
|
|
210
|
+
zs as getDefaultNodeHeight,
|
|
211
|
+
Ws as getDragFloatBox,
|
|
212
|
+
Zs as getDropPreview,
|
|
213
|
+
js as getFileExtension,
|
|
214
|
+
qs as getFilesFromDataTransfer,
|
|
215
|
+
Js as getNodeLayoutBox,
|
|
216
|
+
$s as getQiniuUploadCredential,
|
|
217
|
+
at as getTextWidth,
|
|
218
|
+
et as getTheme,
|
|
219
|
+
st as groupSessionsByTime,
|
|
220
|
+
tt as hasFileDrag,
|
|
221
|
+
ot as hasSubmenuContent,
|
|
222
|
+
it as hasTipMenuApiItems,
|
|
223
|
+
nt as hashMindMapForDirtyCheck,
|
|
224
|
+
rt as isActionBarReady,
|
|
225
|
+
dt as isAnyNodeDecorationFeatureEnabled,
|
|
226
|
+
lt as isAskFormToolName,
|
|
227
|
+
ct as isAskUserAnswerComplete,
|
|
228
|
+
Tt as isAskUserShapedArguments,
|
|
229
|
+
pt as isAskUserToolName,
|
|
230
|
+
ut as isChartType,
|
|
231
|
+
At as isGradient,
|
|
232
|
+
Ct as isIconOutsideContent,
|
|
233
|
+
St as isMenuItemClickable,
|
|
234
|
+
ht as isSelfOrDescendant,
|
|
235
|
+
Mt as isTextArtifactType,
|
|
236
|
+
_t as isTipMenuItemVisible,
|
|
237
|
+
mt as mapDropdownMenuItemToUiMenuItem,
|
|
238
|
+
bt as mapDropdownMenuItemsToUiMenuItems,
|
|
239
|
+
It as mapHistoryItemToSession,
|
|
240
|
+
Pt as mapModelListResponse,
|
|
241
|
+
Lt as mergeChatCloudConfig,
|
|
242
|
+
Et as mergeMindMapTreeBounds,
|
|
243
|
+
Ut as mergeTheme,
|
|
244
|
+
Rt as minimalTheme,
|
|
245
|
+
Dt as moveChatQueueItem,
|
|
246
|
+
gt as moveMindMapNode,
|
|
247
|
+
Nt as normalizeAgentHistoryMessages,
|
|
248
|
+
Ft as normalizeAskUserPayload,
|
|
249
|
+
kt as normalizeAskUserQuestion,
|
|
250
|
+
ft as normalizeHistoryItem,
|
|
251
|
+
vt as normalizeHistoryResourceFile,
|
|
252
|
+
Ot as openArtifactInNewTab,
|
|
253
|
+
Ht as parseAskUserPayloadFromArguments,
|
|
254
|
+
yt as parseGradientColor,
|
|
255
|
+
Bt as parseModelId,
|
|
256
|
+
xt as parseQiniuUploadResult,
|
|
257
|
+
wt as parseSessionRunStatus,
|
|
258
|
+
Gt as partitionNodeActions,
|
|
259
|
+
Kt as professionalTheme,
|
|
260
|
+
Yt as registerChatPreviewRenderer,
|
|
261
|
+
Vt as registerToolRenderer,
|
|
262
|
+
Qt as removeChatQueueItem,
|
|
263
|
+
Xt as renderPlainTextWithReferences,
|
|
264
|
+
zt as replaceSendPayloadText,
|
|
265
|
+
Wt as resolveActionBarIcon,
|
|
266
|
+
Zt as resolveArtifactOpenStrategy,
|
|
267
|
+
jt as resolveArtifactPreviewKind,
|
|
268
|
+
qt as resolveAttachmentInputTarget,
|
|
269
|
+
Jt as resolveChatAttachmentLimits,
|
|
270
|
+
$t as resolveChatPreviewRenderer,
|
|
271
|
+
ao as resolveCloudHeaders,
|
|
272
|
+
eo as resolveDecorationAnimation,
|
|
273
|
+
so as resolveDragProbe,
|
|
274
|
+
to as resolveDropMaxDistance,
|
|
275
|
+
oo as resolveDropTarget,
|
|
276
|
+
io as resolveHoverActionCenterX,
|
|
277
|
+
no as resolveMindMapLinkCurve,
|
|
278
|
+
ro as resolveMindMapNodeGroupRightX,
|
|
279
|
+
lo as resolveMindMapPeripheralTrailingOffset,
|
|
280
|
+
co as resolveModelGroup,
|
|
281
|
+
To as resolveNodeTrailingLayout,
|
|
282
|
+
po as resolveOutlineMindMapPeripheralActions,
|
|
283
|
+
uo as resolvePositionInBox,
|
|
284
|
+
Ao as resolveSkillAvatarSrc,
|
|
285
|
+
Co as resolveSkillCloudPrefix,
|
|
286
|
+
So as resolveTipMenuSubmenuOptions,
|
|
287
|
+
ho as resolveToolRenderer,
|
|
288
|
+
Mo as resourceToContentPart,
|
|
289
|
+
_o as restoreExpandedById,
|
|
290
|
+
mo as restorePositionsAfterRebuild,
|
|
291
|
+
bo as serializeAskUserOutput,
|
|
292
|
+
Io as sessionArtifactToAction,
|
|
293
|
+
Po as shouldCloseMenuOnItemClick,
|
|
294
|
+
Lo as snapshotCurrentPositions,
|
|
295
|
+
Eo as snapshotTreePositions,
|
|
296
|
+
Uo as stripNodeDecorationAnimation,
|
|
297
|
+
Ro as subItemHasSubmenu,
|
|
298
|
+
Do as svgToBlob,
|
|
299
|
+
go as svgToPng,
|
|
300
|
+
No as syncNodeActions,
|
|
301
|
+
Fo as syncTrailingIcon,
|
|
302
|
+
ko as themes,
|
|
303
|
+
fo as throttle,
|
|
304
|
+
vo as toChatResourceFile,
|
|
305
|
+
Oo as toCssAnimationTime,
|
|
306
|
+
Ho as toPanelCardModels,
|
|
307
|
+
yo as toSkillCardModel,
|
|
308
|
+
Bo as toSkillFetchConfig,
|
|
309
|
+
xo as toTipMenuItem,
|
|
310
|
+
wo as toUploadConfig,
|
|
311
|
+
Go as updateViewed,
|
|
312
|
+
Ko as uploadFile,
|
|
313
|
+
Yo as uploadFileToQiniu,
|
|
314
|
+
Vo as useChatContext,
|
|
315
|
+
Qo as useChatSessionHistory,
|
|
316
|
+
Xo as useChatSkillTipMenu,
|
|
317
|
+
zo as useChatSkills,
|
|
318
|
+
Wo as useChatTipMenu,
|
|
319
|
+
Zo as useConversation,
|
|
320
|
+
jo as useExpandingItem,
|
|
321
|
+
qo as useFloatingPair,
|
|
322
|
+
Jo as useImageUrl,
|
|
323
|
+
$o as useMindMapHistory,
|
|
324
|
+
ai as useMindMapLayout,
|
|
325
|
+
ei as useMindMapTheme,
|
|
326
|
+
si as useUiDropdown,
|
|
327
|
+
ti as useUiMenuFloating,
|
|
328
|
+
oi as useUiMenuPanel,
|
|
329
|
+
ii as useUiMenuPanelInject,
|
|
330
|
+
ni as useUiMenuPanelProvide,
|
|
331
|
+
ri as validateAttachmentFile
|
|
281
332
|
};
|