@deep-eye/core 1.2.99 → 1.3.1
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 +53 -0
- package/dist/chat-token.css +226 -0
- package/dist/components/chat/ChatApp.vue.d.ts +142 -0
- package/dist/components/chat/ChatApp.vue.d.ts.map +1 -0
- package/dist/components/chat/ChatBot.vue.d.ts +7 -0
- package/dist/components/chat/ChatBot.vue.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 +3 -3
- 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 +15 -2
- 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 +3 -0
- 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 +14 -9
- 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/harness/Tooltip.vue.d.ts +1 -1
- package/dist/components/chat/harness/Tooltip.vue.d.ts.map +1 -1
- 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/ChatTipMenuExpertIcon.vue.d.ts +9 -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/ChatTipMenuLucideIcon.vue.d.ts +11 -0
- package/dist/components/chat/icons/ChatTipMenuLucideIcon.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 +27 -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/sidebarMotion.d.ts +5 -0
- package/dist/components/chat/sidebarMotion.d.ts.map +1 -1
- package/dist/components/chat/types.d.ts +91 -7
- package/dist/components/chat/types.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 +22 -0
- package/dist/components/skill/types.d.ts.map +1 -1
- package/dist/components/ui/components/UiDialog.vue.d.ts +14 -1
- package/dist/components/ui/components/UiDialog.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiImage.vue.d.ts.map +1 -1
- package/dist/components/ui/components/UiMenu.vue.d.ts +7 -0
- 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/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/composables/floatingPosition.d.ts +19 -0
- package/dist/components/ui/composables/floatingPosition.d.ts.map +1 -0
- package/dist/components/ui/composables/index.d.ts +3 -1
- package/dist/components/ui/composables/index.d.ts.map +1 -1
- package/dist/components/ui/composables/useUiMenuFloating.d.ts +21 -0
- package/dist/components/ui/composables/useUiMenuFloating.d.ts.map +1 -0
- package/dist/{index-xHxkbtlb.cjs → index-B6ipa11F.cjs} +1 -1
- package/dist/{index-D-sSuThI.cjs → index-CQAo2jP4.cjs} +228 -214
- package/dist/{index-BMtOprb0.js → index-CU9fl-AE.js} +1 -1
- package/dist/{index-Cfa1rWQg.js → index-D5HjpyfA.js} +32687 -29872
- package/dist/{index-DBs0MjQj.cjs → index-DIqXNj0-.cjs} +1 -1
- package/dist/{index-BdKHWE9q.js → index-Fh8kY_oA.js} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +311 -271
- package/dist/style.css +2 -2
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -1,281 +1,321 @@
|
|
|
1
|
-
import { A as t, a as o, b as
|
|
1
|
+
import { A as t, a as o, b as i, d as r, B as n, C as d, e as l, f as c, h as T, i as A, j as p, k as u, 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 R, w as U, 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 G, N as K, O as w, 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 ra, a6 as na, a7 as da, a8 as la, a9 as ca, aa as Ta, ab as Aa, ac as pa, ad as ua, 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 Ra, aq as Ua, 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 Ga, aE as Ka, aF as wa, 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, U as ae, aQ as ee, Y as se, aR as te, aS as oe, aT as ie, aU as re, aV as ne, aW as de, aX as le, aY as ce, aZ as Te, a_ as Ae, a$ as pe, b0 as ue, 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 Re, bd as Ue, 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 Ge, br as Ke, bs as we, 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 rs, bL as ns, bM as ds, bN as ls, bO as cs, bP as Ts, bQ as As, bR as ps, bS as us, 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 Rs, c3 as Us, 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 Gs, ch as Ks, ci as ws, 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 rt, cB as nt, cC as dt, cD as lt, cE as ct, cF as Tt, cG as At, cH as pt, cI as ut, 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 Rt, cV as Ut, 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 Gt, d7 as Kt, d8 as wt, 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 ro, ds as no, dt as lo, du as co, dv as To, dw as Ao, dx as po, dy as uo, 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 Ro, dL as Uo, 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 Go, dZ as Ko, d_ as wo, d$ as Yo, e0 as Vo, e1 as Qo, e2 as Xo, e3 as zo, e4 as Wo, e5 as Zo, e6 as jo } from "./index-D5HjpyfA.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
|
-
|
|
6
|
+
i as ARTIFACT_BLOCK_SYSTEM_PROMPT,
|
|
7
|
+
r as ASK_USER_FORM_SYSTEM_PROMPT,
|
|
8
8
|
n as BASICAGENT_DEFAULT_APP_ID,
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
d as CHART_BLOCK_SYSTEM_PROMPT,
|
|
10
|
+
l as CHART_TYPES,
|
|
11
11
|
c as CHAT_SKILL_ALL,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
T as CHAT_SKILL_CHANNEL_HOME,
|
|
13
|
+
A as CHAT_SKILL_CHANNEL_PLAZA,
|
|
14
|
+
p as CHAT_SKILL_MENU_DEFAULT_PARAMS,
|
|
15
15
|
u as CHAT_SKILL_MENU_LAZY_PAGE_SIZE,
|
|
16
|
-
|
|
17
|
-
|
|
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
|
-
|
|
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
|
+
R as ChatFilePreviewPanel,
|
|
28
|
+
U 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
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
pa as
|
|
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
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
pe as
|
|
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
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
ps as
|
|
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
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
pt as
|
|
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
|
-
|
|
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
|
+
G as ChatSenderLinkIcon,
|
|
42
|
+
K as ChatSenderMicIcon,
|
|
43
|
+
w 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
|
+
ra as DEFAULT_CHAT_ATTACHMENT_LIMITS,
|
|
62
|
+
na 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
|
+
Aa as DEFAULT_LAST_SESSION_URL,
|
|
68
|
+
pa as DEFAULT_MODEL_LIST_URL,
|
|
69
|
+
ua 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
|
+
Ra as MIND_MAP_PERIPHERAL_BTN_BASE,
|
|
82
|
+
Ua 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
|
+
Ga as SKILL_CLOUD_DEV_PREFIX,
|
|
96
|
+
Ka as SKILL_CLOUD_PATH,
|
|
97
|
+
wa 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 UiImage,
|
|
104
|
+
Za as UiMenu,
|
|
105
|
+
ja as UiMenuColumn,
|
|
106
|
+
qa as UiMenuSubmenuColumn,
|
|
107
|
+
Ja as UiMenuSubmenuSkeleton,
|
|
108
|
+
$a as UiSearchInput,
|
|
109
|
+
ae as UiSkeleton,
|
|
110
|
+
ee as UiSkeletonItem,
|
|
111
|
+
se as UiTabs,
|
|
112
|
+
te as appendImageViewParams,
|
|
113
|
+
oe as applyInitialCollapse,
|
|
114
|
+
ie as applyMindMapFitInsets,
|
|
115
|
+
re as applyMindMapNodeDecorationFeatures,
|
|
116
|
+
ne as applyMindMapTreeData,
|
|
117
|
+
de as artifactToChatResource,
|
|
118
|
+
le as assertNever,
|
|
119
|
+
ce as buildAskUserFunctionCallOutput,
|
|
120
|
+
Te as buildChatSendPayload,
|
|
121
|
+
Ae as buildCloudAuthHeaders,
|
|
122
|
+
pe as buildSkillApiUrl,
|
|
123
|
+
ue as buildTrailingLayoutSlots,
|
|
124
|
+
Ce as checkLastSession,
|
|
125
|
+
Se as classifyAttachment,
|
|
126
|
+
he as classifyChatError,
|
|
127
|
+
Me as classifyResourceFile,
|
|
128
|
+
_e as clearNodeActions,
|
|
129
|
+
me as collectExpandedById,
|
|
130
|
+
be as collectMindMapSubtreeNodes,
|
|
131
|
+
Ie as collectSessionArtifacts,
|
|
132
|
+
Pe as collectSubtreeIds,
|
|
133
|
+
Le as collectVisibleMindMapNodes,
|
|
134
|
+
Ee as colorfulTheme,
|
|
135
|
+
Re as computeBezierLinkPath,
|
|
136
|
+
Ue as computeMindMapFitTransform,
|
|
137
|
+
De as computeMindMapLayoutSpacing,
|
|
138
|
+
ge as computeMindMapLinkPath,
|
|
139
|
+
Ne as computeMindMapNodeScreenRect,
|
|
140
|
+
Fe as computeMindMapNodeTreeBounds,
|
|
141
|
+
ke as computeMindMapNodeTreeBoundsWithPeripheral,
|
|
142
|
+
fe as computeMindMapNodesTreeBounds,
|
|
143
|
+
ve as computeMindMapPeripheralExtents,
|
|
144
|
+
Oe as computeMindMapTreeBoundsScreenRect,
|
|
145
|
+
He as computeSmoothStepLinkPath,
|
|
146
|
+
ye as computeStepLinkPath,
|
|
147
|
+
Be as computeTrailingChromeWidth,
|
|
148
|
+
xe as convertDatumToMindMapNode,
|
|
149
|
+
Ge as convertMindMapData,
|
|
150
|
+
Ke as convertReferenceMarkers,
|
|
151
|
+
we as convertToD3Tree,
|
|
152
|
+
Ye as createAttachmentFingerprint,
|
|
153
|
+
Ve as createBasicAgentCredentialHeaders,
|
|
154
|
+
Qe as createChatAttachmentController,
|
|
155
|
+
Xe as createChatMessageId,
|
|
156
|
+
ze as createMindMapPositionHelpers,
|
|
157
|
+
We as createNodePayload,
|
|
158
|
+
Ze as createReferenceClickHandler,
|
|
159
|
+
je as createSkillAxios,
|
|
160
|
+
qe as darkTheme,
|
|
161
|
+
Je as debounce,
|
|
162
|
+
$e as deepClone,
|
|
163
|
+
as as defaultTheme,
|
|
164
|
+
es as disposeAllNodeActionComponents,
|
|
165
|
+
ss as disposeAllTrailingIconComponents,
|
|
166
|
+
ts as disposeNodeActionComponent,
|
|
167
|
+
os as disposeTrailingIconComponent,
|
|
168
|
+
is as downloadArtifact,
|
|
169
|
+
rs as downloadBlob,
|
|
170
|
+
ns as editChatQueueItem,
|
|
171
|
+
ds as enqueueChatPayload,
|
|
172
|
+
ls as escapeHtml,
|
|
173
|
+
cs as expandMindMapTreeBoundsPadding,
|
|
174
|
+
Ts as extractAskFormMdocFromToolCalls,
|
|
175
|
+
As as extractAskFormNodes,
|
|
176
|
+
ps as extractAskUserFromToolCall,
|
|
177
|
+
us as extractAskUserFromToolCalls,
|
|
178
|
+
Cs as extractAskUserQuestionsFromContent,
|
|
179
|
+
Ss as extractReferenceIndex,
|
|
180
|
+
hs as fetchAbortSession,
|
|
181
|
+
Ms as fetchChatApi,
|
|
182
|
+
_s as fetchKnowledgeList,
|
|
183
|
+
ms as fetchModelList,
|
|
184
|
+
bs as fetchPublishedScenes,
|
|
185
|
+
Is as fetchPublishedScenesPage,
|
|
186
|
+
Ps as fetchPublishedSkills,
|
|
187
|
+
Ls as fetchPublishedSkillsAndScenes,
|
|
188
|
+
Es as fetchPublishedSkillsPage,
|
|
189
|
+
Rs as fetchResume,
|
|
190
|
+
Us as fetchSkillTypes,
|
|
191
|
+
Ds as filterOutAskFormToolCalls,
|
|
192
|
+
gs as filterOutAskUserToolCalls,
|
|
193
|
+
Ns as filterVisibleMindMapPeripheralActions,
|
|
194
|
+
Fs as findBySessionId,
|
|
195
|
+
ks as findByUserId,
|
|
196
|
+
fs as findNodeLocation,
|
|
197
|
+
vs as findSiblingGapDropTarget,
|
|
198
|
+
Os as forceExpandAll,
|
|
199
|
+
Hs as formatAskUserAnswersLabel,
|
|
200
|
+
ys as formatAskUserBubbleLabel,
|
|
201
|
+
Bs as formatModelLabel,
|
|
202
|
+
xs as formatModelPricingTooltip,
|
|
203
|
+
Gs as generateMindMapId,
|
|
204
|
+
Ks as generateObjectId,
|
|
205
|
+
ws as getChatFileIconSrc,
|
|
206
|
+
Ys as getChatPreviewKind,
|
|
207
|
+
Vs as getDefaultNodeHeight,
|
|
208
|
+
Qs as getDragFloatBox,
|
|
209
|
+
Xs as getDropPreview,
|
|
210
|
+
zs as getFileExtension,
|
|
211
|
+
Ws as getFilesFromDataTransfer,
|
|
212
|
+
Zs as getNodeLayoutBox,
|
|
213
|
+
js as getQiniuUploadCredential,
|
|
214
|
+
qs as getTextWidth,
|
|
215
|
+
Js as getTheme,
|
|
216
|
+
$s as groupSessionsByTime,
|
|
217
|
+
at as hasFileDrag,
|
|
218
|
+
et as hasTipMenuApiItems,
|
|
219
|
+
st as hashMindMapForDirtyCheck,
|
|
220
|
+
tt as isActionBarReady,
|
|
221
|
+
ot as isAnyNodeDecorationFeatureEnabled,
|
|
222
|
+
it as isAskFormToolName,
|
|
223
|
+
rt as isAskUserAnswerComplete,
|
|
224
|
+
nt as isAskUserShapedArguments,
|
|
225
|
+
dt as isAskUserToolName,
|
|
226
|
+
lt as isChartType,
|
|
227
|
+
ct as isGradient,
|
|
228
|
+
Tt as isIconOutsideContent,
|
|
229
|
+
At as isSelfOrDescendant,
|
|
230
|
+
pt as isTextArtifactType,
|
|
231
|
+
ut as isTipMenuItemVisible,
|
|
232
|
+
Ct as mapHistoryItemToSession,
|
|
233
|
+
St as mapModelListResponse,
|
|
234
|
+
ht as mergeChatCloudConfig,
|
|
235
|
+
Mt as mergeMindMapTreeBounds,
|
|
236
|
+
_t as mergeTheme,
|
|
237
|
+
mt as minimalTheme,
|
|
238
|
+
bt as moveChatQueueItem,
|
|
239
|
+
It as moveMindMapNode,
|
|
240
|
+
Pt as normalizeAgentHistoryMessages,
|
|
241
|
+
Lt as normalizeAskUserPayload,
|
|
242
|
+
Et as normalizeAskUserQuestion,
|
|
243
|
+
Rt as normalizeHistoryItem,
|
|
244
|
+
Ut as normalizeHistoryResourceFile,
|
|
245
|
+
Dt as openArtifactInNewTab,
|
|
246
|
+
gt as parseAskUserPayloadFromArguments,
|
|
247
|
+
Nt as parseGradientColor,
|
|
248
|
+
Ft as parseModelId,
|
|
249
|
+
kt as parseQiniuUploadResult,
|
|
250
|
+
ft as parseSessionRunStatus,
|
|
251
|
+
vt as partitionNodeActions,
|
|
252
|
+
Ot as professionalTheme,
|
|
253
|
+
Ht as registerChatPreviewRenderer,
|
|
254
|
+
yt as registerToolRenderer,
|
|
255
|
+
Bt as removeChatQueueItem,
|
|
256
|
+
xt as renderPlainTextWithReferences,
|
|
257
|
+
Gt as replaceSendPayloadText,
|
|
258
|
+
Kt as resolveActionBarIcon,
|
|
259
|
+
wt as resolveArtifactOpenStrategy,
|
|
260
|
+
Yt as resolveArtifactPreviewKind,
|
|
261
|
+
Vt as resolveAttachmentInputTarget,
|
|
262
|
+
Qt as resolveChatAttachmentLimits,
|
|
263
|
+
Xt as resolveChatPreviewRenderer,
|
|
264
|
+
zt as resolveCloudHeaders,
|
|
265
|
+
Wt as resolveDecorationAnimation,
|
|
266
|
+
Zt as resolveDragProbe,
|
|
267
|
+
jt as resolveDropMaxDistance,
|
|
268
|
+
qt as resolveDropTarget,
|
|
269
|
+
Jt as resolveHoverActionCenterX,
|
|
270
|
+
$t as resolveMindMapLinkCurve,
|
|
271
|
+
ao as resolveMindMapNodeGroupRightX,
|
|
272
|
+
eo as resolveMindMapPeripheralTrailingOffset,
|
|
273
|
+
so as resolveModelGroup,
|
|
274
|
+
to as resolveNodeTrailingLayout,
|
|
275
|
+
oo as resolveOutlineMindMapPeripheralActions,
|
|
276
|
+
io as resolvePositionInBox,
|
|
277
|
+
ro as resolveSkillAvatarSrc,
|
|
278
|
+
no as resolveSkillCloudPrefix,
|
|
279
|
+
lo as resolveTipMenuSubmenuOptions,
|
|
280
|
+
co as resolveToolRenderer,
|
|
281
|
+
To as resourceToContentPart,
|
|
282
|
+
Ao as restoreExpandedById,
|
|
283
|
+
po as restorePositionsAfterRebuild,
|
|
284
|
+
uo as serializeAskUserOutput,
|
|
285
|
+
Co as sessionArtifactToAction,
|
|
286
|
+
So as snapshotCurrentPositions,
|
|
287
|
+
ho as snapshotTreePositions,
|
|
288
|
+
Mo as stripNodeDecorationAnimation,
|
|
289
|
+
_o as svgToBlob,
|
|
290
|
+
mo as svgToPng,
|
|
291
|
+
bo as syncNodeActions,
|
|
292
|
+
Io as syncTrailingIcon,
|
|
293
|
+
Po as themes,
|
|
294
|
+
Lo as throttle,
|
|
295
|
+
Eo as toChatResourceFile,
|
|
296
|
+
Ro as toCssAnimationTime,
|
|
297
|
+
Uo as toPanelCardModels,
|
|
298
|
+
Do as toSkillCardModel,
|
|
299
|
+
go as toSkillFetchConfig,
|
|
300
|
+
No as toTipMenuItem,
|
|
301
|
+
Fo as toUploadConfig,
|
|
302
|
+
ko as updateViewed,
|
|
303
|
+
fo as uploadFile,
|
|
304
|
+
vo as uploadFileToQiniu,
|
|
305
|
+
Oo as useChatContext,
|
|
306
|
+
Ho as useChatSessionHistory,
|
|
307
|
+
yo as useChatSkillTipMenu,
|
|
308
|
+
Bo as useChatSkills,
|
|
309
|
+
xo as useChatTipMenu,
|
|
310
|
+
Go as useConversation,
|
|
311
|
+
Ko as useExpandingItem,
|
|
312
|
+
wo as useImageUrl,
|
|
313
|
+
Yo as useMindMapHistory,
|
|
314
|
+
Vo as useMindMapLayout,
|
|
315
|
+
Qo as useMindMapTheme,
|
|
316
|
+
Xo as useUiMenuFloating,
|
|
317
|
+
zo as useUiMenuPanel,
|
|
318
|
+
Wo as useUiMenuPanelInject,
|
|
319
|
+
Zo as useUiMenuPanelProvide,
|
|
320
|
+
jo as validateAttachmentFile
|
|
281
321
|
};
|