@box/box-ai-content-answers 1.0.2 → 1.1.0
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/chunks/types.js +15 -12
- package/dist/esm/index.js +19 -18
- package/dist/esm/lib/components/answer/citation.js +37 -35
- package/dist/esm/lib/components/answer/references.js +24 -22
- package/dist/esm/lib/components/api-wrapper/utils/format.js +6 -5
- package/dist/esm/lib/components/common/mock-data.js +19 -17
- package/dist/esm/lib/components/thinkingBubble/boxAILoadingIndicator.js +138 -96
- package/dist/i18n/en-CA.js +1 -1
- package/dist/i18n/en-CA.properties +1 -1
- package/dist/i18n/en-x-pseudo.js +88 -88
- package/dist/i18n/en-x-pseudo.properties +88 -88
- package/dist/i18n/ja-JP.js +1 -1
- package/dist/i18n/ja-JP.properties +1 -1
- package/dist/types/lib/components/answer/citation.d.ts +3 -2
- package/dist/types/lib/components/answer/stories/shared.d.ts +8 -0
- package/dist/types/lib/types.d.ts +4 -0
- package/package.json +4 -4
- package/dist/styles/boxAILoadingIndicator.css +0 -1
package/dist/chunks/types.js
CHANGED
|
@@ -1,21 +1,24 @@
|
|
|
1
|
-
let
|
|
2
|
-
return
|
|
3
|
-
}({}), n = /* @__PURE__ */ function(
|
|
4
|
-
return
|
|
5
|
-
}({}), r = /* @__PURE__ */ function(
|
|
6
|
-
return
|
|
7
|
-
}({}), s = /* @__PURE__ */ function(
|
|
8
|
-
return
|
|
1
|
+
let e = /* @__PURE__ */ function(t) {
|
|
2
|
+
return t.GENERAL = "general", t.RATE_LIMITING = "rate_limiting", t.NO_CONTENT = "no_content", t.PRECONDITION_FAILED = "precondition_failed", t.AGENT_NOT_FOUND = "agent_not_found", t.RESPONSE_FAILED = "response_failed", t.RESPONSE_INTERRUPTED = "response_interrupted", t.RESPONSE_STOPPED = "response_stopped", t;
|
|
3
|
+
}({}), n = /* @__PURE__ */ function(t) {
|
|
4
|
+
return t.LARGE_FILE = "large_file", t.GENERAL = "general", t;
|
|
5
|
+
}({}), r = /* @__PURE__ */ function(t) {
|
|
6
|
+
return t.NOT_STARTED = "not_started", t.IN_PROGRESS = "in_progress", t.SUCCESS = "success", t.ERROR = "error", t.CANCELLED = "cancelled", t;
|
|
7
|
+
}({}), s = /* @__PURE__ */ function(t) {
|
|
8
|
+
return t.CUSTOM = "suggested_question_custom", t.INTELLIGENT = "suggested_question_intelligent", t.STATIC = "suggested_question_static", t;
|
|
9
9
|
}({});
|
|
10
10
|
const o = "user_input";
|
|
11
|
-
let i = /* @__PURE__ */ function(
|
|
12
|
-
return
|
|
11
|
+
let i = /* @__PURE__ */ function(t) {
|
|
12
|
+
return t.DID_NOT_FOLLOW_REQUEST = "did_not_follow_request", t.INACCURATE_ANSWER = "inaccurate_answer", t.OTHER = "other", t;
|
|
13
|
+
}({}), u = /* @__PURE__ */ function(t) {
|
|
14
|
+
return t.HUBS_METADATA = "hubs_metadata", t;
|
|
13
15
|
}({});
|
|
14
16
|
export {
|
|
15
|
-
|
|
17
|
+
e as A,
|
|
16
18
|
n as C,
|
|
17
19
|
i as F,
|
|
18
20
|
r as R,
|
|
19
21
|
s as S,
|
|
20
|
-
o as U
|
|
22
|
+
o as U,
|
|
23
|
+
u as a
|
|
21
24
|
};
|
package/dist/esm/index.js
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
import { BoxAiContentAnswers as r } from "./lib/box-ai-content-answers.js";
|
|
2
2
|
import { AnswerContent as E } from "./lib/components/answer/answer-content.js";
|
|
3
|
-
import { References as
|
|
4
|
-
import { withApiWrapper as
|
|
3
|
+
import { References as T } from "./lib/components/answer/references.js";
|
|
4
|
+
import { withApiWrapper as p } from "./lib/components/api-wrapper/api-wrapper.js";
|
|
5
5
|
import { C as _ } from "../chunks/clear-conversation-button.js";
|
|
6
6
|
import { IntelligenceModal as A } from "./lib/components/modal/modal.js";
|
|
7
|
-
import { IntelligenceSidebar as
|
|
8
|
-
import { AI_AGENTS_LOCAL_STORAGE_KEY as
|
|
9
|
-
import { usePromptFocus as
|
|
10
|
-
import { A as
|
|
7
|
+
import { IntelligenceSidebar as f } from "./lib/components/sidebar/sidebar.js";
|
|
8
|
+
import { AI_AGENTS_LOCAL_STORAGE_KEY as x, APP_MODE as O } from "./lib/constants.js";
|
|
9
|
+
import { usePromptFocus as P } from "./lib/hooks/usePromptFocus.js";
|
|
10
|
+
import { A as i, a as N, C as U, F as l, R as c, S as u, U as G } from "../chunks/types.js";
|
|
11
11
|
export {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
x as AI_AGENTS_LOCAL_STORAGE_KEY,
|
|
13
|
+
i as ANSWER_ERROR,
|
|
14
|
+
O as APP_MODE,
|
|
15
15
|
E as AnswerContent,
|
|
16
16
|
r as BoxAiContentAnswers,
|
|
17
|
-
|
|
17
|
+
N as CITATION_SOURCE,
|
|
18
|
+
U as CONTENT_ERROR,
|
|
18
19
|
_ as ClearConversationButton,
|
|
19
|
-
|
|
20
|
+
l as FeedbackIssueType,
|
|
20
21
|
A as IntelligenceModal,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
f as IntelligenceSidebar,
|
|
23
|
+
c as REQUEST_STATE,
|
|
24
|
+
T as References,
|
|
25
|
+
u as SUGGESTED_QUESTION_PROMPT_TYPE,
|
|
26
|
+
G as USER_INPUT_PROMPT_TYPE,
|
|
27
|
+
P as usePromptFocus,
|
|
28
|
+
p as withApiWrapper
|
|
28
29
|
};
|
|
@@ -1,42 +1,44 @@
|
|
|
1
|
-
import { Popover as u, Status as
|
|
1
|
+
import { Popover as u, Status as E, Text as x, TextButton as A } from "@box/blueprint-web";
|
|
2
2
|
import { ArrowUpRightSquare as L } from "@box/blueprint-web-assets/icons/Fill";
|
|
3
3
|
import M from "clsx";
|
|
4
4
|
import D from "lodash/debounce";
|
|
5
|
-
import
|
|
6
|
-
import { useState as
|
|
5
|
+
import R from "lodash/truncate";
|
|
6
|
+
import { useState as I, useRef as G, useCallback as F, useEffect as U } from "react";
|
|
7
7
|
import { useIntl as j } from "react-intl";
|
|
8
|
-
import {
|
|
8
|
+
import { a as H } from "../../../../chunks/types.js";
|
|
9
|
+
import { LOGGER_BASE_CONFIG as S, LOGGER_ACTION_CLICK as K } from "../common/constants.js";
|
|
9
10
|
import { MAX_CITATION_LENGTH as P } from "./constants.js";
|
|
10
11
|
import s from "./messages.js";
|
|
11
12
|
import { jsxs as N, jsx as a } from "react/jsx-runtime";
|
|
12
|
-
import '../../../../styles/citation.css';const
|
|
13
|
-
citationTrigger:
|
|
14
|
-
citationStatus:
|
|
15
|
-
animate:
|
|
16
|
-
fadeIn:
|
|
17
|
-
cardTooltip:
|
|
18
|
-
cardTooltipTitle:
|
|
19
|
-
cardTooltipCitation:
|
|
20
|
-
cardTooltipButton:
|
|
21
|
-
},
|
|
13
|
+
import '../../../../styles/citation.css';const q = "_citationTrigger_4yo68_1", W = "_citationStatus_4yo68_5", X = "_animate_4yo68_26", $ = "_fadeIn_4yo68_30", k = "_cardTooltip_4yo68_34", z = "_cardTooltipTitle_4yo68_38", J = "_cardTooltipCitation_4yo68_42", Q = "_cardTooltipButton_4yo68_47", o = {
|
|
14
|
+
citationTrigger: q,
|
|
15
|
+
citationStatus: W,
|
|
16
|
+
animate: X,
|
|
17
|
+
fadeIn: $,
|
|
18
|
+
cardTooltip: k,
|
|
19
|
+
cardTooltipTitle: z,
|
|
20
|
+
cardTooltipCitation: J,
|
|
21
|
+
cardTooltipButton: Q
|
|
22
|
+
}, lt = ({
|
|
22
23
|
animate: p,
|
|
23
24
|
content: m,
|
|
24
25
|
id: e,
|
|
25
|
-
recordAction:
|
|
26
|
+
recordAction: i,
|
|
26
27
|
fileId: _,
|
|
27
28
|
title: c,
|
|
28
|
-
onCitationClick: l
|
|
29
|
+
onCitationClick: l,
|
|
30
|
+
source: y
|
|
29
31
|
}) => {
|
|
30
|
-
const [g,
|
|
31
|
-
formatMessage:
|
|
32
|
-
} = j(), h = !!l, C =
|
|
32
|
+
const [g, O] = I(!1), [b, v] = I(!p), {
|
|
33
|
+
formatMessage: n
|
|
34
|
+
} = j(), h = !!l && y !== H.HUBS_METADATA, C = G(null);
|
|
33
35
|
let T;
|
|
34
|
-
c ? T =
|
|
36
|
+
c ? T = n(s.cardTooltipTitleWithDocumentName, {
|
|
35
37
|
title: c.toString()
|
|
36
|
-
}) : T =
|
|
38
|
+
}) : T = n(s.cardTooltipTitle);
|
|
37
39
|
const B = D((t) => {
|
|
38
|
-
|
|
39
|
-
...
|
|
40
|
+
O(t), t === !0 && i && i({
|
|
41
|
+
...S,
|
|
40
42
|
feature: "answers-citations",
|
|
41
43
|
target: "hovered",
|
|
42
44
|
data: {
|
|
@@ -48,19 +50,19 @@ import '../../../../styles/citation.css';const U = "_citationTrigger_4yo68_1", q
|
|
|
48
50
|
}, r = () => {
|
|
49
51
|
B(!1);
|
|
50
52
|
}, w = F(() => {
|
|
51
|
-
l &&
|
|
52
|
-
...
|
|
53
|
+
l && i && (l(_, c), i({
|
|
54
|
+
...S,
|
|
53
55
|
feature: "answers-citations",
|
|
54
56
|
target: K,
|
|
55
57
|
data: {
|
|
56
58
|
index: e
|
|
57
59
|
}
|
|
58
60
|
}));
|
|
59
|
-
}, [l,
|
|
60
|
-
|
|
61
|
+
}, [l, i, e, _, c]);
|
|
62
|
+
U(() => {
|
|
61
63
|
p && v(!0);
|
|
62
64
|
}, []);
|
|
63
|
-
const f = m ?
|
|
65
|
+
const f = m ? R(m.toString(), {
|
|
64
66
|
length: P,
|
|
65
67
|
separator: /,? +/
|
|
66
68
|
}) : void 0;
|
|
@@ -71,9 +73,9 @@ import '../../../../styles/citation.css';const U = "_citationTrigger_4yo68_1", q
|
|
|
71
73
|
className: o.citationTrigger,
|
|
72
74
|
onMouseEnter: d,
|
|
73
75
|
onMouseLeave: r,
|
|
74
|
-
children: /* @__PURE__ */ a(
|
|
76
|
+
children: /* @__PURE__ */ a(E, {
|
|
75
77
|
ref: C,
|
|
76
|
-
"aria-label": g ? f :
|
|
78
|
+
"aria-label": g ? f : n(s.referenceAriaLabel, {
|
|
77
79
|
number: e
|
|
78
80
|
}),
|
|
79
81
|
className: M(o.citationStatus, {
|
|
@@ -119,13 +121,13 @@ import '../../../../styles/citation.css';const U = "_citationTrigger_4yo68_1", q
|
|
|
119
121
|
color: "textOnLightDefault",
|
|
120
122
|
variant: "caption",
|
|
121
123
|
children: f
|
|
122
|
-
}), h && /* @__PURE__ */ a(
|
|
123
|
-
"aria-label":
|
|
124
|
+
}), h && /* @__PURE__ */ a(A, {
|
|
125
|
+
"aria-label": n(s.cardTooltipButton),
|
|
124
126
|
className: o.cardTooltipButton,
|
|
125
127
|
icon: L,
|
|
126
128
|
onClick: w,
|
|
127
129
|
"data-target-id": "TextButton-cardTooltipButton",
|
|
128
|
-
children:
|
|
130
|
+
children: n(s.cardTooltipButton)
|
|
129
131
|
})]
|
|
130
132
|
})
|
|
131
133
|
})
|
|
@@ -133,6 +135,6 @@ import '../../../../styles/citation.css';const U = "_citationTrigger_4yo68_1", q
|
|
|
133
135
|
});
|
|
134
136
|
};
|
|
135
137
|
export {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
+
lt as Citation,
|
|
139
|
+
lt as default
|
|
138
140
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { Text as
|
|
2
|
-
import { useEffect as
|
|
3
|
-
import { useIntl as
|
|
4
|
-
import { LOGGER_BASE_CONFIG as
|
|
5
|
-
import { Citation as
|
|
6
|
-
import
|
|
7
|
-
import { NoCitationsIcon as
|
|
8
|
-
import { jsx as r, jsxs as l, Fragment as
|
|
9
|
-
import '../../../../styles/references.css';const
|
|
10
|
-
label:
|
|
11
|
-
},
|
|
1
|
+
import { Text as g } from "@box/blueprint-web";
|
|
2
|
+
import { useEffect as i } from "react";
|
|
3
|
+
import { useIntl as w } from "react-intl";
|
|
4
|
+
import { LOGGER_BASE_CONFIG as b } from "../common/constants.js";
|
|
5
|
+
import { Citation as N } from "./citation.js";
|
|
6
|
+
import _ from "./messages.js";
|
|
7
|
+
import { NoCitationsIcon as x } from "./no-citations.js";
|
|
8
|
+
import { jsx as r, jsxs as l, Fragment as C } from "react/jsx-runtime";
|
|
9
|
+
import '../../../../styles/references.css';const O = "_label_1wqmn_1", t = {
|
|
10
|
+
label: O
|
|
11
|
+
}, R = ({
|
|
12
12
|
animate: m = !0,
|
|
13
13
|
citations: e,
|
|
14
14
|
recordAction: s,
|
|
@@ -16,10 +16,10 @@ import '../../../../styles/references.css';const C = "_label_1wqmn_1", t = {
|
|
|
16
16
|
}) => {
|
|
17
17
|
const a = e && e.length > 0, {
|
|
18
18
|
formatMessage: f
|
|
19
|
-
} =
|
|
20
|
-
return
|
|
19
|
+
} = w();
|
|
20
|
+
return i(() => {
|
|
21
21
|
a && s && s({
|
|
22
|
-
...
|
|
22
|
+
...b,
|
|
23
23
|
feature: "answers-citations",
|
|
24
24
|
target: "shown",
|
|
25
25
|
data: {
|
|
@@ -32,37 +32,39 @@ import '../../../../styles/references.css';const C = "_label_1wqmn_1", t = {
|
|
|
32
32
|
}) : /* @__PURE__ */ l("div", {
|
|
33
33
|
className: t.references,
|
|
34
34
|
"data-testid": "content-answers-references",
|
|
35
|
-
children: [a && /* @__PURE__ */ l(
|
|
36
|
-
children: [/* @__PURE__ */ r(
|
|
35
|
+
children: [a && /* @__PURE__ */ l(C, {
|
|
36
|
+
children: [/* @__PURE__ */ r(g, {
|
|
37
37
|
as: "span",
|
|
38
38
|
className: t.label,
|
|
39
39
|
color: "textOnLightSecondary",
|
|
40
40
|
"data-testid": "content-answers-references-label",
|
|
41
41
|
variant: "caption",
|
|
42
|
-
children: f(
|
|
42
|
+
children: f(_.basedOn)
|
|
43
43
|
}), e.map(({
|
|
44
44
|
content: c,
|
|
45
45
|
location: d,
|
|
46
46
|
title: p,
|
|
47
|
-
fileId: h
|
|
47
|
+
fileId: h,
|
|
48
|
+
source: u
|
|
48
49
|
}, n) => (
|
|
49
50
|
// eslint-disable-next-line react/no-array-index-key
|
|
50
|
-
/* @__PURE__ */ r(
|
|
51
|
+
/* @__PURE__ */ r(N, {
|
|
51
52
|
animate: m,
|
|
52
53
|
content: c,
|
|
53
54
|
fileId: h,
|
|
54
55
|
id: n + 1,
|
|
55
56
|
onCitationClick: o,
|
|
56
57
|
recordAction: s,
|
|
58
|
+
source: u,
|
|
57
59
|
title: p
|
|
58
60
|
}, `${d}-${n + 1}`)
|
|
59
61
|
))]
|
|
60
|
-
}), (e == null ? void 0 : e.length) === 0 && /* @__PURE__ */ r(
|
|
62
|
+
}), (e == null ? void 0 : e.length) === 0 && /* @__PURE__ */ r(x, {
|
|
61
63
|
recordAction: s
|
|
62
64
|
})]
|
|
63
65
|
});
|
|
64
66
|
};
|
|
65
67
|
export {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
+
R as References,
|
|
69
|
+
R as default
|
|
68
70
|
};
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { S as i } from "../../../../../chunks/types.js";
|
|
2
|
-
const
|
|
2
|
+
const s = (e) => e.map((t) => ({
|
|
3
3
|
content: t.cited_text_content,
|
|
4
4
|
location: t.cited_text_location,
|
|
5
5
|
title: t.cited_doc_name,
|
|
6
|
-
fileId: t.cited_doc_id
|
|
7
|
-
|
|
6
|
+
fileId: t.cited_doc_id,
|
|
7
|
+
source: t.cited_doc_source
|
|
8
|
+
})), _ = (e) => e.suggestedPrompts.map((t, o) => ({
|
|
8
9
|
prompt: t,
|
|
9
10
|
id: `suggestion-${o}`,
|
|
10
11
|
type: i.INTELLIGENT
|
|
11
12
|
}));
|
|
12
13
|
export {
|
|
13
|
-
|
|
14
|
-
|
|
14
|
+
s as defaultFormatCitations,
|
|
15
|
+
_ as defaultFormatSuggestions
|
|
15
16
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { A as e } from "../../../../chunks/types.js";
|
|
2
|
-
import { agentList as
|
|
3
|
-
const
|
|
1
|
+
import { a as t, A as e } from "../../../../chunks/types.js";
|
|
2
|
+
import { agentList as i, agentState as s } from "../api-wrapper/constants.js";
|
|
3
|
+
const a = [{
|
|
4
4
|
location: "location1",
|
|
5
5
|
fileId: "123",
|
|
6
6
|
content: "In the heart of the bustling city, amidst the cacophony of car horns and distant chatter, lies a hidden oasis of tranquility. This serene sanctuary, with its lush greenery and gentle trickling streams, offers a reprieve from the relentless pace of urban life. Here, amidst the whispering leaves and the soft rustle of wildlife, one can find solace and renewal."
|
|
@@ -12,14 +12,16 @@ const s = [{
|
|
|
12
12
|
location: "location3",
|
|
13
13
|
fileId: "789",
|
|
14
14
|
content: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Curabitur pretium tincidunt lacus. Nulla gravida orci a odio. Nullam varius, turpis et commodo pharetra, est eros bibendum elit, nec luctus magna felis sollicitudin mauris. Integer in mauris eu nibh euismod gravida. Duis ac tellus et risus vulputate vehicula. Donec lobortis risus a elit. Etiam tempor. Ut ullamcorper, ligula eu tempor congue, eros est euismod turpis, id tincidunt sapien risus a quam. Maecenas fermentum consequat mi. Donec fermentum. Pellentesque malesuada nulla a mi. Duis sapien sem, aliquet nec, commodo eget, consequat quis, neque. Aliquam faucibus, elit ut dictum aliquet, felis nisl adipiscing sapien, sed malesuada diam lacus eget erat. Cras mollis scelerisque nunc. Nullam arcu. Aliquam consequat. Curabitur augue lorem, dapibus quis, laoreet et, pretium ac, nisi. Aenean magna nisl, mollis quis, molestie eu, feugiat in, orci. In hac habitasse platea dictumst."
|
|
15
|
-
}]
|
|
15
|
+
}];
|
|
16
|
+
t.HUBS_METADATA;
|
|
17
|
+
const l = [{
|
|
16
18
|
answer: "I am a mock answer",
|
|
17
19
|
id: "1",
|
|
18
20
|
isCompleted: !0,
|
|
19
21
|
isLoading: !1,
|
|
20
22
|
error: null,
|
|
21
23
|
prompt: "Can you summarize this?",
|
|
22
|
-
citations:
|
|
24
|
+
citations: a
|
|
23
25
|
}, {
|
|
24
26
|
answer: "",
|
|
25
27
|
id: "2",
|
|
@@ -76,7 +78,7 @@ const s = [{
|
|
|
76
78
|
isLoading: !1,
|
|
77
79
|
error: e.NO_CONTENT,
|
|
78
80
|
prompt: "What is the capital of Italy?"
|
|
79
|
-
}],
|
|
81
|
+
}], p = [{
|
|
80
82
|
answer: "Washington, D.C.",
|
|
81
83
|
id: "0",
|
|
82
84
|
isCompleted: !0,
|
|
@@ -90,7 +92,7 @@ const s = [{
|
|
|
90
92
|
isLoading: !1,
|
|
91
93
|
error: null,
|
|
92
94
|
prompt: "What is the capital of Poland?"
|
|
93
|
-
}],
|
|
95
|
+
}], u = i, d = s, o = [{
|
|
94
96
|
type: "file",
|
|
95
97
|
name: "Document.docx",
|
|
96
98
|
status: "supported",
|
|
@@ -155,7 +157,7 @@ const s = [{
|
|
|
155
157
|
name: "Note.boxnote",
|
|
156
158
|
status: "no_permission",
|
|
157
159
|
id: "10"
|
|
158
|
-
}],
|
|
160
|
+
}], m = o[1], c = [{
|
|
159
161
|
status: "supported",
|
|
160
162
|
fileType: "word-document"
|
|
161
163
|
}, {
|
|
@@ -188,7 +190,7 @@ const s = [{
|
|
|
188
190
|
}, {
|
|
189
191
|
status: "no_permission",
|
|
190
192
|
fileType: void 0
|
|
191
|
-
}],
|
|
193
|
+
}], _ = [{
|
|
192
194
|
type: "file",
|
|
193
195
|
name: "This_is_a_very_long_file_name_that_tests_the_boundary_conditions_for_file_names.docx",
|
|
194
196
|
status: "supported",
|
|
@@ -250,12 +252,12 @@ const s = [{
|
|
|
250
252
|
id: "9"
|
|
251
253
|
}];
|
|
252
254
|
export {
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
255
|
+
d as mockAgentState,
|
|
256
|
+
u as mockAgents,
|
|
257
|
+
p as mockConversation,
|
|
258
|
+
o as mockItemsAllTypes,
|
|
259
|
+
_ as mockItemsWithLongNames,
|
|
260
|
+
c as mockLogAllTypes,
|
|
261
|
+
l as mockQuestions,
|
|
262
|
+
m as spreadsheetItem
|
|
261
263
|
};
|