-
Notifications
You must be signed in to change notification settings - Fork 626
Expand file tree
/
Copy pathDisplayPromptResult.jsx
More file actions
460 lines (423 loc) · 12.7 KB
/
DisplayPromptResult.jsx
File metadata and controls
460 lines (423 loc) · 12.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
import { InfoCircleFilled } from "@ant-design/icons";
import { Space, Spin, Typography } from "antd";
import PropTypes from "prop-types";
import { useEffect, useState } from "react";
import {
displayPromptResult,
generateApiRunStatusId,
generateUUID,
PROMPT_RUN_API_STATUSES,
} from "../../../helpers/GetStaticData";
import "./PromptCard.css";
import { useCustomToolStore } from "../../../store/custom-tool-store";
import { SpinnerLoader } from "../../widgets/spinner-loader/SpinnerLoader";
function DisplayPromptResult({
output,
profileId,
docId,
promptRunStatus,
handleSelectHighlight,
highlightData,
promptDetails,
confidenceData,
wordConfidenceData,
isTable = false,
setOpenExpandModal = () => {
// No-op default
},
progressMsg,
}) {
const [isLoading, setIsLoading] = useState(false);
const [parsedOutput, setParsedOutput] = useState(null);
const [selectedKey, setSelectedKey] = useState(null);
const {
singlePassExtractMode,
isSinglePassExtractLoading,
details,
selectedHighlight,
} = useCustomToolStore();
useEffect(() => {
if (singlePassExtractMode && isSinglePassExtractLoading) {
setIsLoading(true);
return;
}
const key = generateApiRunStatusId(docId, profileId);
if (promptRunStatus?.[key] === PROMPT_RUN_API_STATUSES.RUNNING) {
setIsLoading(true);
return;
}
setIsLoading(false);
const isFormattingRequired = isTable ? false : true;
setParsedOutput(
displayPromptResult(
output,
isFormattingRequired,
details?.enable_highlight,
),
);
}, [
promptRunStatus,
isSinglePassExtractLoading,
details?.enable_highlight,
output,
isTable,
]);
if (isLoading) {
return (
<div className="prompt-loading-container">
<Spin indicator={<SpinnerLoader size="small" />} />
{progressMsg?.message && (
<Typography.Text
className="prompt-progress-msg"
type={progressMsg?.level === "ERROR" ? "danger" : "secondary"}
>
{progressMsg.message}
</Typography.Text>
)}
</div>
);
}
if (output === undefined) {
return (
<Typography.Text className="prompt-not-ran">
<span>
<InfoCircleFilled className="info-circle-colored" />
</span>{" "}
Yet to run
</Typography.Text>
);
}
if (output === null) {
return (
<Typography.Text className="prompt-output-result">null</Typography.Text>
);
}
// Extract confidence from 5th element of highlight data coordinate arrays
const extractConfidenceFromHighlightData = (data) => {
if (!data) {
return null;
}
const confidenceValues = [];
const extractFromArray = (arr) => {
if (Array.isArray(arr)) {
for (const item of arr) {
if (Array.isArray(item)) {
// Check if this is a coordinate array with 5 elements
if (item.length >= 5 && typeof item[4] === "number") {
confidenceValues.push(item[4]);
} else {
// Recursively check nested arrays
extractFromArray(item);
}
} else if (typeof item === "object" && item !== null) {
// Recursively check objects
for (const val of Object.values(item)) {
extractFromArray(val);
}
}
}
} else if (typeof arr === "object" && arr !== null) {
for (const val of Object.values(arr)) {
extractFromArray(val);
}
}
};
extractFromArray(data);
// Calculate average confidence if we found any values
if (confidenceValues.length > 0) {
const sum = confidenceValues.reduce((acc, val) => acc + val, 0);
return sum / confidenceValues.length;
}
return null;
};
const handleClick = (
highlightData,
confidenceData,
wordConfidenceData,
key,
keyPath,
) => {
if (highlightData?.[key]) {
const shouldUseWordConfidence =
details?.enable_highlight && details?.enable_word_confidence;
const getNestedValue = (obj, path) => {
if (!obj || !path) {
return undefined;
}
const normalized = path.replace(/\[(\d+)\]/g, ".$1");
const parts = normalized.split(".").filter((p) => p !== "");
return parts.reduce((acc, part) => {
if (acc === undefined || acc === null) {
return undefined;
}
const maybeIndex = /^\d+$/.test(part) ? Number(part) : part;
return acc[maybeIndex];
}, obj);
};
let confidence;
if (shouldUseWordConfidence && wordConfidenceData) {
const wordConfidence = getNestedValue(wordConfidenceData, key);
if (wordConfidence && typeof wordConfidence === "object") {
const values = Object.values(wordConfidence).filter(
(v) => typeof v === "number",
);
if (values.length > 0) {
const sum = values.reduce((acc, val) => acc + val, 0);
confidence = sum / values.length;
}
}
}
if (confidence === undefined) {
const extractedConfidence = extractConfidenceFromHighlightData(
highlightData[key],
);
confidence = extractedConfidence ?? confidenceData?.[key];
}
handleSelectHighlight(
highlightData[key],
promptDetails?.prompt_id,
profileId,
confidence,
);
setSelectedKey(keyPath);
}
};
const isObject = (value) =>
typeof value === "object" && value !== null && !Array.isArray(value);
const renderJson = (
data,
highlightData,
confidenceData,
wordConfidenceData,
indent = 0,
path = "",
isTable = false,
) => {
if (isTable) {
const stringData =
typeof data === "string" ? data : JSON.stringify(data, null, 4);
const lines = stringData.split("\n");
const truncated = lines.slice(0, 25).join("\n");
return (
<div>
{truncated}
{lines.length > 25 && (
<Typography.Link
className="font-size-12"
onClick={() => {
setOpenExpandModal(true);
}}
>
...show more
</Typography.Link>
)}
</div>
);
}
if (typeof data === "object" && !details?.enable_highlight) {
return JSON.stringify(data, null, 4);
}
if (typeof data === "string") {
return `"${data}"`;
}
if (typeof data === "number" || typeof data === "boolean") {
return data.toString();
}
if (Array.isArray(data)) {
return (
<>
{"["}
<div style={{ paddingLeft: "20px" }}>
{data?.map((item, index) => (
<div key={generateUUID()}>
{renderJson(
item,
highlightData?.[index],
confidenceData?.[index],
wordConfidenceData?.[index],
indent + 1,
`${path}[${index}]`,
isTable,
)}
{index < data.length - 1 ? "," : ""}
</div>
))}
</div>
{"]"}
</>
);
}
if (isObject(data)) {
return (
<>
{"{"}
<div style={{ paddingLeft: "20px" }}>
{Object.entries(data).map(([key, value], index, array) => {
const isClickable = !isObject(value) && !Array.isArray(value); // Only primitive values should be clickable
const newPath = path ? `${path}.${key}` : key;
const isSelected = selectedKey === newPath;
return (
<div key={key}>
<Space wrap className="json-key">
{key}
</Space>
{": "}
<Typography.Text
className={`prompt-output-result json-value ${
isClickable && highlightData?.[key] ? "clickable" : ""
} ${isSelected ? "selected" : ""}`}
onClick={() => {
if (isClickable && highlightData?.[key]) {
handleClick(
highlightData,
confidenceData,
wordConfidenceData,
key,
newPath,
);
}
}}
>
{renderJson(
value,
highlightData?.[key],
confidenceData?.[key],
wordConfidenceData?.[key],
indent + 1,
newPath,
isTable,
)}
</Typography.Text>
{index < array.length - 1 ? "," : ""}
</div>
);
})}
</div>
{"}"}
</>
);
}
return String(data);
};
return (
<Typography.Paragraph className="prompt-card-display-output font-size-12">
{parsedOutput && typeof parsedOutput === "object" ? (
renderJson(
parsedOutput,
highlightData,
confidenceData,
wordConfidenceData,
0,
"",
isTable,
)
) : (
<TextResult
enableHighlight={details?.enable_highlight}
highlightData={highlightData}
promptId={promptDetails?.prompt_id}
profileId={profileId}
wordConfidenceData={wordConfidenceData}
selectedHighlight={selectedHighlight}
parsedOutput={parsedOutput}
onSelectHighlight={handleSelectHighlight}
/>
)}
</Typography.Paragraph>
);
}
const TextResult = ({
enableHighlight,
highlightData,
promptId,
profileId,
wordConfidenceData,
selectedHighlight,
parsedOutput,
onSelectHighlight,
}) => {
const getConfidenceForText = () => {
// Try word confidence first
if (wordConfidenceData && typeof wordConfidenceData === "object") {
const values = Object.values(wordConfidenceData).filter(
(v) => typeof v === "number",
);
if (values.length > 0) {
const sum = values.reduce((acc, val) => acc + val, 0);
return sum / values.length;
}
}
// Fallback to extracting from highlight data
if (highlightData) {
const confidenceValues = [];
const extractConfidenceFromHighlightData = (data) => {
if (Array.isArray(data)) {
for (const item of data) {
if (Array.isArray(item)) {
if (item.length >= 5 && typeof item[4] === "number") {
confidenceValues.push(item[4]);
} else {
extractConfidenceFromHighlightData(item);
}
} else if (typeof item === "object" && item !== null) {
for (const val of Object.values(item)) {
extractConfidenceFromHighlightData(val);
}
}
}
} else if (typeof data === "object" && data !== null) {
for (const val of Object.values(data)) {
extractConfidenceFromHighlightData(val);
}
}
};
extractConfidenceFromHighlightData(highlightData);
if (confidenceValues.length > 0) {
const sum = confidenceValues.reduce((acc, val) => acc + val, 0);
return sum / confidenceValues.length;
}
}
return undefined;
};
const confidence = getConfidenceForText();
return enableHighlight ? (
<Typography.Text
wrap
onClick={() =>
onSelectHighlight(highlightData, promptId, profileId, confidence)
}
className={`prompt-output-result json-value ${
highlightData ? "clickable" : ""
} ${selectedHighlight?.highlightedPrompt === promptId ? "selected" : ""}`}
>
{parsedOutput}
</Typography.Text>
) : (
<div>{parsedOutput}</div>
);
};
TextResult.propTypes = {
enableHighlight: PropTypes.bool,
highlightData: PropTypes.any,
promptId: PropTypes.string,
profileId: PropTypes.string,
wordConfidenceData: PropTypes.any,
selectedHighlight: PropTypes.object,
parsedOutput: PropTypes.any,
onSelectHighlight: PropTypes.func.isRequired,
};
DisplayPromptResult.propTypes = {
output: PropTypes.any,
profileId: PropTypes.string,
docId: PropTypes.string,
promptRunStatus: PropTypes.object,
handleSelectHighlight: PropTypes.func,
highlightData: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
promptDetails: PropTypes.object,
confidenceData: PropTypes.object,
wordConfidenceData: PropTypes.object,
isTable: PropTypes.bool,
setOpenExpandModal: PropTypes.func,
progressMsg: PropTypes.object,
};
export { DisplayPromptResult };