@far-world-labs/verblets 0.6.3 → 0.6.4
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/README.md +32 -7
- package/dist/index.browser.js +234 -224
- package/dist/index.js +448 -443
- package/dist/shared-CsrVgt_K.js +11483 -0
- package/package.json +1 -1
- package/dist/shared-BSAzZOFX.js +0 -11644
package/README.md
CHANGED
|
@@ -25,9 +25,9 @@ Or use a `.env` file in your project root (loaded automatically via dotenv).
|
|
|
25
25
|
Then initialize and call a function:
|
|
26
26
|
|
|
27
27
|
```js
|
|
28
|
-
import { init
|
|
28
|
+
import { init } from '@far-world-labs/verblets';
|
|
29
29
|
|
|
30
|
-
init();
|
|
30
|
+
const { score } = init();
|
|
31
31
|
|
|
32
32
|
const results = await score(
|
|
33
33
|
['reliability', 'performance', 'ease of use'],
|
|
@@ -35,18 +35,43 @@ const results = await score(
|
|
|
35
35
|
);
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
`init()` validates that an API key is present and
|
|
38
|
+
`init()` validates that an API key is present, creates a fresh model service, and returns an object of wrapped functions with services pre-injected. Destructure the functions you need:
|
|
39
39
|
|
|
40
40
|
```js
|
|
41
|
-
init({
|
|
41
|
+
const { filter, map, bool, llm } = init({
|
|
42
42
|
embed: true, // enable local embedding model
|
|
43
43
|
redis: redisClient, // pre-configured Redis client for caching
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
models: { // extend the model catalog (additive)
|
|
45
|
+
'my-llama': { provider: 'openai', apiUrl: 'http://localhost:11434/v1', endpoint: '/chat/completions', maxContextWindow: 8192, maxOutputTokens: 4096 },
|
|
46
|
+
},
|
|
47
|
+
rules: [ // override negotiation rules (first match wins)
|
|
48
|
+
{ match: { sensitive: true, good: true }, use: 'my-llama' },
|
|
49
|
+
{ match: { sensitive: true }, use: 'my-llama' },
|
|
50
|
+
{ match: { reasoning: true }, use: 'claude-opus-4-6' },
|
|
51
|
+
{ match: { cheap: true, good: false }, use: 'gpt-4.1-nano' },
|
|
52
|
+
{ use: 'gpt-4.1-mini' }, // catch-all default
|
|
53
|
+
],
|
|
54
|
+
policy: { // base policy for all LLM calls
|
|
55
|
+
temperature: () => 0.7,
|
|
46
56
|
},
|
|
47
57
|
});
|
|
48
58
|
```
|
|
49
59
|
|
|
60
|
+
Each `init()` call creates an isolated instance with its own ModelService, so two instances do not share model configuration or caches:
|
|
61
|
+
|
|
62
|
+
```js
|
|
63
|
+
const a = init({ rules: [{ use: 'gpt-4.1' }] });
|
|
64
|
+
const b = init({ rules: [{ use: 'claude-sonnet-4-20250514' }] });
|
|
65
|
+
await a.filter(items, 'urgent'); // uses gpt-4.1
|
|
66
|
+
await b.filter(items, 'urgent'); // uses claude-sonnet-4-20250514
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
The library selects models through ordered pattern-matching rules. Each rule has an optional `match` (capability conditions) and a `use` (model name). The first matching rule wins. A rule's `match` maps capabilities to `true` (must be requested) or `false` (must NOT be requested). Unmentioned capabilities are don't-care.
|
|
70
|
+
|
|
71
|
+
Consumers express intent as capability objects: `{ fast: true }`, `{ reasoning: true }`, `{ sensitive: true, good: true }`. The value `'prefer'` acts as a soft preference that falls through gracefully when unavailable. Capabilities: `fast`, `cheap`, `good`, `reasoning`, `multi`, `sensitive`.
|
|
72
|
+
|
|
73
|
+
Sensitive and reasoning capabilities are gated by default — they only match rules that explicitly mention them, preventing sensitive data from reaching cloud models or expensive reasoning models from being selected without opt-in.
|
|
74
|
+
|
|
50
75
|
Without Redis, caching is disabled and the library operates statelessly.
|
|
51
76
|
|
|
52
77
|
## Repository Guide
|
|
@@ -172,7 +197,7 @@ Codebase utilities analyze, test, and improve code quality using AI reasoning.
|
|
|
172
197
|
Low-level utilities that support chains and verblets. Most are synchronous and make no LLM calls.
|
|
173
198
|
|
|
174
199
|
- [llm](./src/lib/llm) - Core LLM wrapper with capability-based model selection and structured output
|
|
175
|
-
- [context](./src/lib/context) - Config resolution: `getOption`, `getOptions`, `withPolicy
|
|
200
|
+
- [context](./src/lib/context) - Config resolution: `nameStep`, `getOption`, `getOptions`, `withPolicy`
|
|
176
201
|
- [prompt-cache](./src/lib/prompt-cache) - Cache LLM prompts and responses
|
|
177
202
|
- [retry](./src/lib/retry) - Config-aware async retry
|
|
178
203
|
- [parallel-batch](./src/lib/parallel-batch) - Parallel execution with concurrency limits
|
package/dist/index.browser.js
CHANGED
|
@@ -1,228 +1,238 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { cU as a } from "./shared-CsrVgt_K.js";
|
|
2
|
+
import { cR as c, N as i, K as r, P as n, cg as o, aX as l, M as b, cf as p, L as u, ci as m, cj as d, av as g, c7 as S, cQ as I, cl as T, O as y, cm as h, Q as R, bn as v, ck as E, bq as C, ch as M, cc as f, bH as F, bC as O, bD as P, cb as L, a6 as N, I as B, af as x, a5 as A, bd as D, y as k, aB as w, aL as G, bF as z, o as K, aU as U, bE as V, ac as _, G as j, H as Q, aT as W, bA as Y, a8 as q, a9 as J, cz as H, c4 as X, q as Z, aV as $, c2 as aa, aW as sa, cA as ea, bs as ta, cT as ca, m as ia, aY as ra, cB as na, c6 as oa, J as la, R as ba, ag as pa, c as ua, be as ma, z as da, aM as ga, aN as Sa, Y as Ia, p as Ta, c5 as ya, r as ha, W as Ra, aa as va, ab as Ea, aw as Ca, aZ as Ma, a$ as fa, b1 as Fa, b2 as Oa, bN as Pa, c0 as La, bO as Na, b_ as Ba, bP as xa, b$ as Aa, bU as Da, bZ as ka, bY as wa, bT as Ga, bX as za, bS as Ka, c1 as Ua, bV as Va, bW as _a, bQ as ja, ad as Qa, ai as Wa, ak as Ya, al as qa, ah as Ja, aj as Ha, ae as Xa, a3 as Za, a4 as $a, Z as as, bG as ss, am as es, cq as ts, b3 as cs, an as is, b4 as rs, ao as ns, at as os, a_ as ls, U as bs, V as ps, g as us, ap as ms, aq as ds, cS as gs, bI as Ss, ar as Is, b5 as Ts, j as ys, cC as hs, as as Rs, au as vs, ax as Es, r as Cs, bJ as Ms, bK as fs, ay as Fs, b6 as Os, b7 as Ps, n as Ls, c8 as Ns, t as Bs, u as xs, S as As, T as Ds, cD as ks, c9 as ws, ca as Gs, cy as zs, bf as Ks, bg as Us, b8 as Vs, bK as _s, cE as js, cK as Qs, b9 as Ws, F as Ys, cN as qs, cO as Js, cL as Hs, ba as Xs, c3 as Zs, d as $s, bc as ae, bb as se, bi as ee, bk as te, bl as ce, bh as ie, bj as re, cP as ne, f as oe, ce as le, v as be, B as pe, D as ue, E as me, A as de, C as ge, x as Se, bm as Ie, cM as Te, bz as ye, s as he, az as Re, aE as ve, aG as Ee, aH as Ce, aC as Me, aD as fe, aF as Fe, aA as Oe, bL as Pe, bR as Le, bM as Ne, cJ as Be, b0 as xe, bo as Ae, bB as De, aI as ke, cF as we, bp as Ge, cs as ze, cr as Ke, a7 as Ue, aK as Ve, br as _e, aJ as je, aP as Qe, aR as We, aS as Ye, aO as qe, aQ as Je, $ as He, a0 as Xe, _ as Ze, a2 as $e, cd as at, bt as st, bu as et, ct as tt, cv as ct, cw as it, cu as rt, cx as nt, bv as ot, bw as lt, cG as bt, a1 as pt, X as ut, cH as mt, by as dt, bx as gt, cn as St, co as It, cp as Tt, w as yt, cI as ht } from "./shared-CsrVgt_K.js";
|
|
3
3
|
a();
|
|
4
4
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
c as CAPABILITY_KEYS,
|
|
6
|
+
i as COMPLIANCE,
|
|
7
|
+
r as CONTEXT_KINDS,
|
|
8
8
|
n as COST_POSTURE,
|
|
9
|
-
o as
|
|
10
|
-
l as
|
|
11
|
-
b as
|
|
12
|
-
p as
|
|
13
|
-
u as
|
|
14
|
-
m as
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
T as
|
|
20
|
-
y as
|
|
21
|
-
h as
|
|
22
|
-
R as
|
|
23
|
-
v as
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
F as
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
L as
|
|
32
|
-
N as
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
G as
|
|
40
|
-
z as
|
|
41
|
-
|
|
42
|
-
U as
|
|
43
|
-
|
|
44
|
-
_ as
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
Y as
|
|
49
|
-
|
|
50
|
-
J as
|
|
51
|
-
H as
|
|
52
|
-
X as
|
|
53
|
-
Z as
|
|
54
|
-
$ as
|
|
55
|
-
aa as
|
|
56
|
-
sa as
|
|
57
|
-
ea as
|
|
58
|
-
ta as
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
na as
|
|
63
|
-
oa as
|
|
64
|
-
la as
|
|
65
|
-
ba as
|
|
66
|
-
pa as
|
|
67
|
-
ua as
|
|
68
|
-
ma as
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
Ta as
|
|
74
|
-
ya as
|
|
75
|
-
ha as
|
|
76
|
-
Ra as
|
|
77
|
-
va as
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
Fa as
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
La as
|
|
86
|
-
Na as
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
Ga as
|
|
94
|
-
za as
|
|
95
|
-
|
|
96
|
-
Ua as
|
|
97
|
-
|
|
98
|
-
_a as
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
Ya as
|
|
103
|
-
|
|
104
|
-
Ja as
|
|
105
|
-
Ha as
|
|
106
|
-
Xa as
|
|
107
|
-
Za as
|
|
108
|
-
$a as
|
|
109
|
-
as as
|
|
110
|
-
ss as
|
|
111
|
-
es as
|
|
112
|
-
ts as
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
ns as
|
|
117
|
-
os as
|
|
118
|
-
ls as
|
|
119
|
-
bs as
|
|
120
|
-
ps as
|
|
121
|
-
us as
|
|
122
|
-
ms as
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
Ts as
|
|
128
|
-
ys as
|
|
129
|
-
hs as
|
|
130
|
-
Rs as
|
|
131
|
-
vs as
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
Fs as
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
Ls as
|
|
140
|
-
Ns as
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
Gs as
|
|
148
|
-
zs as
|
|
149
|
-
|
|
150
|
-
Us as
|
|
151
|
-
|
|
152
|
-
_s as
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
Ys as
|
|
157
|
-
|
|
158
|
-
Js as
|
|
159
|
-
Hs as
|
|
160
|
-
Xs as
|
|
161
|
-
Zs as
|
|
162
|
-
$s as
|
|
163
|
-
ae as
|
|
164
|
-
se as
|
|
165
|
-
ee as
|
|
166
|
-
te as
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
ne as
|
|
171
|
-
oe as
|
|
172
|
-
le as
|
|
173
|
-
be as
|
|
174
|
-
pe as
|
|
175
|
-
ue as
|
|
176
|
-
me as
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
Te as
|
|
182
|
-
ye as
|
|
183
|
-
he as
|
|
184
|
-
Re as
|
|
185
|
-
ve as
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
Fe as
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
Le as
|
|
194
|
-
Ne as
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
Ge as
|
|
202
|
-
ze as
|
|
203
|
-
|
|
204
|
-
Ue as
|
|
205
|
-
|
|
206
|
-
_e as
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
Ye as
|
|
211
|
-
|
|
212
|
-
Je as
|
|
213
|
-
He as
|
|
214
|
-
Xe as
|
|
215
|
-
Ze as
|
|
216
|
-
$e as
|
|
217
|
-
at as
|
|
218
|
-
st as
|
|
219
|
-
et as
|
|
220
|
-
tt as
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
nt as
|
|
225
|
-
ot as
|
|
226
|
-
lt as
|
|
227
|
-
bt as
|
|
9
|
+
o as ChainEvent,
|
|
10
|
+
l as Conversation,
|
|
11
|
+
b as DOMAIN,
|
|
12
|
+
p as DomainEvent,
|
|
13
|
+
u as ENVIRONMENT,
|
|
14
|
+
m as Kind,
|
|
15
|
+
d as Level,
|
|
16
|
+
g as ListStyle,
|
|
17
|
+
S as MODEL_KEYS,
|
|
18
|
+
I as ModelService,
|
|
19
|
+
T as ModelSource,
|
|
20
|
+
y as OpEvent,
|
|
21
|
+
h as OptionSource,
|
|
22
|
+
R as QUALITY_INTENT,
|
|
23
|
+
v as SocraticMethod,
|
|
24
|
+
E as StatusCode,
|
|
25
|
+
C as SummaryMap,
|
|
26
|
+
M as TelemetryEvent,
|
|
27
|
+
f as TimedAbortController,
|
|
28
|
+
F as aiExpect,
|
|
29
|
+
O as analyzeImage,
|
|
30
|
+
P as analyzeImageMapDetail,
|
|
31
|
+
L as anySignal,
|
|
32
|
+
N as applyAllTargetingRules,
|
|
33
|
+
B as applyCalibrate,
|
|
34
|
+
x as applyEntities,
|
|
35
|
+
A as applyFirstTargetingRule,
|
|
36
|
+
D as applyRelations,
|
|
37
|
+
k as applyScale,
|
|
38
|
+
w as applyScore,
|
|
39
|
+
G as applyTags,
|
|
40
|
+
z as auto,
|
|
41
|
+
K as bool,
|
|
42
|
+
U as buildSeedGenerationPrompt,
|
|
43
|
+
V as buildVisionPrompt,
|
|
44
|
+
_ as calculateStatistics,
|
|
45
|
+
j as calibrate,
|
|
46
|
+
Q as calibrateSpec,
|
|
47
|
+
W as categorySamples,
|
|
48
|
+
Y as causalFramePrompt,
|
|
49
|
+
q as centralTendency,
|
|
50
|
+
J as centralTendencyLines,
|
|
51
|
+
H as chunk,
|
|
52
|
+
X as chunkSentences,
|
|
53
|
+
Z as classify,
|
|
54
|
+
$ as collectTerms,
|
|
55
|
+
aa as combinations,
|
|
56
|
+
sa as commonalities,
|
|
57
|
+
ea as compact,
|
|
58
|
+
ta as computeTagStatistics,
|
|
59
|
+
ca as config,
|
|
60
|
+
ia as constants,
|
|
61
|
+
ra as conversationTurnReduce,
|
|
62
|
+
na as cosineSimilarity,
|
|
63
|
+
oa as createBatches,
|
|
64
|
+
la as createCalibratedClassifier,
|
|
65
|
+
ba as createContextBuilder,
|
|
66
|
+
pa as createEntityExtractor,
|
|
67
|
+
ua as createProgressEmitter,
|
|
68
|
+
ma as createRelationExtractor,
|
|
69
|
+
da as createScale,
|
|
70
|
+
ga as createTagExtractor,
|
|
71
|
+
Sa as createTagger,
|
|
72
|
+
Ia as createTraceCollector,
|
|
73
|
+
Ta as date,
|
|
74
|
+
ya as debug,
|
|
75
|
+
ha as default,
|
|
76
|
+
Ra as descriptorToSchema,
|
|
77
|
+
va as detectPatterns,
|
|
78
|
+
Ea as detectThreshold,
|
|
79
|
+
Ca as determineStyle,
|
|
80
|
+
Ma as disambiguate,
|
|
81
|
+
fa as dismantle,
|
|
82
|
+
Fa as dismantleFactory,
|
|
83
|
+
Oa as documentShrink,
|
|
84
|
+
Pa as embed,
|
|
85
|
+
La as embedAssembleSpan,
|
|
86
|
+
Na as embedBatch,
|
|
87
|
+
Ba as embedBuildIndex,
|
|
88
|
+
xa as embedChunked,
|
|
89
|
+
Aa as embedMergeRanges,
|
|
90
|
+
Da as embedMultiQuery,
|
|
91
|
+
ka as embedNeighborChunks,
|
|
92
|
+
wa as embedNormalizeText,
|
|
93
|
+
Ga as embedRewriteQuery,
|
|
94
|
+
za as embedRewriteToOutputDoc,
|
|
95
|
+
Ka as embedScore,
|
|
96
|
+
Ua as embedStandaloneSpan,
|
|
97
|
+
Va as embedStepBack,
|
|
98
|
+
_a as embedSubquestions,
|
|
99
|
+
ja as embedWarmup,
|
|
100
|
+
Qa as entities,
|
|
101
|
+
Wa as entitiesFilterInstructions,
|
|
102
|
+
Ya as entitiesFindInstructions,
|
|
103
|
+
qa as entitiesGroupInstructions,
|
|
104
|
+
Ja as entitiesMapInstructions,
|
|
105
|
+
Ha as entitiesReduceInstructions,
|
|
106
|
+
Xa as entitySpec,
|
|
107
|
+
Za as evaluateTargetingClause,
|
|
108
|
+
$a as evaluateTargetingRule,
|
|
109
|
+
as as eventToTrace,
|
|
110
|
+
ss as expect,
|
|
111
|
+
es as extractBlocks,
|
|
112
|
+
ts as extractJson,
|
|
113
|
+
cs as fillMissing,
|
|
114
|
+
is as filter,
|
|
115
|
+
rs as filterAmbiguous,
|
|
116
|
+
ns as find,
|
|
117
|
+
os as generateList,
|
|
118
|
+
ls as getMeanings,
|
|
119
|
+
bs as getOption,
|
|
120
|
+
ps as getOptionDetail,
|
|
121
|
+
us as getOptions,
|
|
122
|
+
ms as glossary,
|
|
123
|
+
ds as group,
|
|
124
|
+
gs as init,
|
|
125
|
+
Ss as intent,
|
|
126
|
+
Is as intersections,
|
|
127
|
+
Ts as join,
|
|
128
|
+
ys as jsonSchema,
|
|
129
|
+
hs as last,
|
|
130
|
+
Rs as list,
|
|
131
|
+
vs as listBatch,
|
|
132
|
+
Es as listExpand,
|
|
133
|
+
Cs as llm,
|
|
134
|
+
Ms as llmLogger,
|
|
135
|
+
fs as makePrompt,
|
|
136
|
+
Fs as map,
|
|
137
|
+
Os as name,
|
|
138
|
+
Ps as nameSimilarTo,
|
|
139
|
+
Ls as nameStep,
|
|
140
|
+
Ns as normalizeLlm,
|
|
141
|
+
Bs as number,
|
|
142
|
+
xs as numberWithUnits,
|
|
143
|
+
As as observeApplication,
|
|
144
|
+
Ds as observeProviders,
|
|
145
|
+
ks as omit,
|
|
146
|
+
ws as parallel,
|
|
147
|
+
Gs as parallelMap,
|
|
148
|
+
zs as parseLLMList,
|
|
149
|
+
Ks as parseRDFLiteral,
|
|
150
|
+
Us as parseRelations,
|
|
151
|
+
Vs as people,
|
|
152
|
+
_s as phailForge,
|
|
153
|
+
js as pick,
|
|
154
|
+
Qs as pipe,
|
|
155
|
+
Ws as popReference,
|
|
156
|
+
Ys as probeScan,
|
|
157
|
+
qs as promptCache,
|
|
158
|
+
Js as promptPiece,
|
|
159
|
+
Hs as prompts,
|
|
160
|
+
Xs as questions,
|
|
161
|
+
Zs as rangeCombinations,
|
|
162
|
+
$s as reduce,
|
|
163
|
+
ae as relationSpec,
|
|
164
|
+
se as relations,
|
|
165
|
+
ee as relationsFilterInstructions,
|
|
166
|
+
te as relationsFindInstructions,
|
|
167
|
+
ce as relationsGroupInstructions,
|
|
168
|
+
ie as relationsMapInstructions,
|
|
169
|
+
re as relationsReduceInstructions,
|
|
170
|
+
ne as resolveModel,
|
|
171
|
+
oe as retry,
|
|
172
|
+
le as ringBuffer,
|
|
173
|
+
be as scale,
|
|
174
|
+
pe as scaleFilterInstructions,
|
|
175
|
+
ue as scaleFindInstructions,
|
|
176
|
+
me as scaleGroupInstructions,
|
|
177
|
+
de as scaleMapInstructions,
|
|
178
|
+
ge as scaleReduceInstructions,
|
|
179
|
+
Se as scaleSpec,
|
|
180
|
+
Ie as schemaOrg,
|
|
181
|
+
Te as schemas,
|
|
182
|
+
ye as scientificFramingPrompt,
|
|
183
|
+
he as scopePhase,
|
|
184
|
+
Re as score,
|
|
185
|
+
ve as scoreFilterInstructions,
|
|
186
|
+
Ee as scoreFindInstructions,
|
|
187
|
+
Ce as scoreGroupInstructions,
|
|
188
|
+
Me as scoreItem,
|
|
189
|
+
fe as scoreMapInstructions,
|
|
190
|
+
Fe as scoreReduceInstructions,
|
|
191
|
+
Oe as scoreSpec,
|
|
192
|
+
Pe as sentiment,
|
|
193
|
+
Le as setEmbedEnabled,
|
|
194
|
+
Ne as setInterval,
|
|
195
|
+
Be as shuffle,
|
|
196
|
+
xe as simplifyTree,
|
|
197
|
+
Ae as socratic,
|
|
198
|
+
De as softCoverPrompt,
|
|
199
|
+
ke as sort,
|
|
200
|
+
we as sortBy,
|
|
201
|
+
Ge as split,
|
|
202
|
+
ze as stripNumeric,
|
|
203
|
+
Ke as stripResponse,
|
|
204
|
+
Ue as suggestTargetingRules,
|
|
205
|
+
Ve as tagSpec,
|
|
206
|
+
_e as tagVocabulary,
|
|
207
|
+
je as tags,
|
|
208
|
+
Qe as tagsFilterInstructions,
|
|
209
|
+
We as tagsFindInstructions,
|
|
210
|
+
Ye as tagsGroupInstructions,
|
|
211
|
+
qe as tagsMapInstructions,
|
|
212
|
+
Je as tagsReduceInstructions,
|
|
213
|
+
He as targetingClause,
|
|
214
|
+
Xe as targetingRule,
|
|
215
|
+
Ze as targetingRuleOps,
|
|
216
|
+
$e as targetingRuleSchema,
|
|
217
|
+
at as templateReplace,
|
|
218
|
+
st as themes,
|
|
219
|
+
et as timeline,
|
|
220
|
+
tt as toBool,
|
|
221
|
+
ct as toDate,
|
|
222
|
+
it as toEnum,
|
|
223
|
+
rt as toNumber,
|
|
224
|
+
nt as toNumberWithUnits,
|
|
225
|
+
ot as toObject,
|
|
226
|
+
lt as truncate,
|
|
227
|
+
bt as unionBy,
|
|
228
|
+
pt as validateTargetingRules,
|
|
229
|
+
ut as valueArbitrate,
|
|
230
|
+
mt as vectorSearch,
|
|
231
|
+
dt as veiledVariantStrategies,
|
|
232
|
+
gt as veiledVariants,
|
|
233
|
+
St as version,
|
|
234
|
+
It as windowFor,
|
|
235
|
+
Tt as withInactivityTimeout,
|
|
236
|
+
yt as withPolicy,
|
|
237
|
+
ht as zipWith
|
|
228
238
|
};
|