@far-world-labs/verblets 0.6.4 → 0.7.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/README.md +66 -4
- package/dist/index.browser.js +217 -221
- package/dist/index.js +768 -736
- package/dist/shared-CNTi6iN9.js +13472 -0
- package/package.json +2 -2
- package/dist/shared-CsrVgt_K.js +0 -11483
package/README.md
CHANGED
|
@@ -80,6 +80,7 @@ Without Redis, caching is disabled and the library operates statelessly.
|
|
|
80
80
|
|
|
81
81
|
- [Chains](./src/chains/) - Prompt chains and algorithms based on LLMs
|
|
82
82
|
- [Verblets](./src/verblets/) - Core AI utility functions. At most a single LLM call, no prompt chains.
|
|
83
|
+
- [Embedding](./src/embed/) - Local embedding, vector scoring, and semantic state construction
|
|
83
84
|
- [Library Helpers](./src/lib/) - Utility functions and wrappers
|
|
84
85
|
- [Prompts](./src/prompts/) - Reusable prompt templates
|
|
85
86
|
- [JSON Schemas](./src/json-schemas/) - Data validation schemas
|
|
@@ -102,7 +103,6 @@ Math chains transform values using conceptual reasoning and subjective judgment
|
|
|
102
103
|
|
|
103
104
|
- [scale](./src/chains/scale) - Convert qualitative descriptions to numeric values using a specification generator for consistency across invocations
|
|
104
105
|
- [calibrate](./src/chains/calibrate) - Build and apply specification-based classifiers with adjustable sensitivity
|
|
105
|
-
- [probe-scan](./src/chains/probe-scan) - Scan items for relevance using embedding similarity with configurable detection thresholds
|
|
106
106
|
|
|
107
107
|
### Lists
|
|
108
108
|
|
|
@@ -167,7 +167,6 @@ Retrieval utilities transform queries and prepare text for search and RAG (retri
|
|
|
167
167
|
- [embed-step-back](./src/verblets/embed-step-back) - Broaden queries to underlying concepts and principles
|
|
168
168
|
- [embed-subquestions](./src/verblets/embed-subquestions) - Split complex queries into atomic sub-questions
|
|
169
169
|
- [embed-rewrite-to-output-doc](./src/verblets/embed-rewrite-to-output-doc) - Rewrite a query as if it were the answer document
|
|
170
|
-
- [embed-score](./src/lib/embed-score) - Score and rank items against a query using embedding similarity
|
|
171
170
|
|
|
172
171
|
|
|
173
172
|
### Utility Operations
|
|
@@ -192,18 +191,81 @@ Codebase utilities analyze, test, and improve code quality using AI reasoning.
|
|
|
192
191
|
- [test](./src/chains/test) - Generate test cases covering happy paths, edge cases, and error conditions
|
|
193
192
|
|
|
194
193
|
|
|
194
|
+
## Instruction Bundles
|
|
195
|
+
|
|
196
|
+
All chains and verblets accept instructions as a string or an object with named context. Unknown keys become XML context prepended to the prompt; known keys override internal derivation (skipping expensive LLM calls). This enables pipeline patterns where one chain's derived artifacts feed the next.
|
|
197
|
+
|
|
198
|
+
```js
|
|
199
|
+
// String — unchanged behavior
|
|
200
|
+
const scores = await score(articles, 'Rate persuasiveness 0-10');
|
|
201
|
+
|
|
202
|
+
// Object — text plus named context
|
|
203
|
+
const scores = await score(articles, {
|
|
204
|
+
text: 'Rate persuasiveness 0-10',
|
|
205
|
+
domain: 'Political campaign ads',
|
|
206
|
+
});
|
|
207
|
+
|
|
208
|
+
// Known key — reuse a spec from a prior chain, skipping spec generation
|
|
209
|
+
const scores = await score(articles, {
|
|
210
|
+
text: 'Rate persuasiveness 0-10',
|
|
211
|
+
spec: priorSpec,
|
|
212
|
+
});
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
Capture derived artifacts for reuse with `collectEventsWith`:
|
|
216
|
+
|
|
217
|
+
```js
|
|
218
|
+
import { collectEventsWith, extractEntities } from '@far-world-labs/verblets';
|
|
219
|
+
|
|
220
|
+
const [entities, { specification }] = await collectEventsWith(
|
|
221
|
+
(onProgress) => extractEntities(doc, 'Extract organizations', { onProgress }),
|
|
222
|
+
'specification',
|
|
223
|
+
);
|
|
224
|
+
|
|
225
|
+
// Reuse — skips the spec generation LLM call
|
|
226
|
+
const more = await extractEntities(doc2, { text: 'Extract organizations', spec: specification });
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
Each function exports a `knownTexts` property listing the keys it recognizes.
|
|
230
|
+
|
|
231
|
+
## Embedding
|
|
232
|
+
|
|
233
|
+
Embedding utilities provide local vector embedding and a semantic state construction system for building vector representations of structured objects.
|
|
234
|
+
|
|
235
|
+
### Primitives
|
|
236
|
+
|
|
237
|
+
- [embed](./src/embed) - Local embedding: `embed`, `embedBatch`, `embedChunked`, `embedWarmup`, `embedImage`, `embedImageBatch`
|
|
238
|
+
- [normalize-text](./src/embed/normalize-text) - Normalize text (NFC, whitespace, line endings) for consistent embedding
|
|
239
|
+
- [neighbor-chunks](./src/embed/neighbor-chunks) - Expand retrieved chunks with neighboring context
|
|
240
|
+
- [score-chunks-by-probes](./src/embed/score-chunks-by-probes) - Score chunk×probe pairs by cosine similarity, sorted by score
|
|
241
|
+
|
|
242
|
+
### Object Construction
|
|
243
|
+
|
|
244
|
+
Build multi-projection vector states from text sources using LLM-driven fragmentation and local embedding.
|
|
245
|
+
|
|
246
|
+
- [embed-object-define](./src/chains/embed-object-define) - Discover projection schema from example texts
|
|
247
|
+
- [embed-object-fragment](./src/chains/embed-object-fragment) - Fragment source texts into projection-tagged pieces
|
|
248
|
+
- [embed-object-refine](./src/chains/embed-object-refine) - Refine schema using a study set of selected states
|
|
249
|
+
- [embed-object](./src/embed/embed-object) - Embed fragments into multi-projection vector states
|
|
250
|
+
- [shape-state](./src/embed/shape-state) - Clone and scale projection vectors within states
|
|
251
|
+
- [plan-read](./src/embed/plan-read) - Construct read plans from schema defaults or overrides
|
|
252
|
+
- [read](./src/embed/read) - Extract scalar property values from states (`read` and `readDetails`)
|
|
253
|
+
- [match](./src/embed/match) - Weighted cosine matching across projection vectors
|
|
254
|
+
|
|
195
255
|
## Library Helpers
|
|
196
256
|
|
|
197
257
|
Low-level utilities that support chains and verblets. Most are synchronous and make no LLM calls.
|
|
198
258
|
|
|
199
259
|
- [llm](./src/lib/llm) - Core LLM wrapper with capability-based model selection and structured output
|
|
200
260
|
- [context](./src/lib/context) - Config resolution: `nameStep`, `getOption`, `getOptions`, `withPolicy`
|
|
261
|
+
- [instruction](./src/lib/instruction) - Instruction normalization: `resolveTexts`, `resolveArgs`, `normalizeInstruction`
|
|
262
|
+
- [context-budget](./src/lib/context-budget) - XML context assembler: collect named entries, wrap, join
|
|
263
|
+
- [collect-events-with](./src/lib/collect-events-with) - Wrap a chain call and capture derived artifacts from progress events
|
|
264
|
+
- [template-builder](./src/lib/template-builder) - Immutable tagged-template prompt builder with named slots
|
|
201
265
|
- [prompt-cache](./src/lib/prompt-cache) - Cache LLM prompts and responses
|
|
202
266
|
- [retry](./src/lib/retry) - Config-aware async retry
|
|
203
267
|
- [parallel-batch](./src/lib/parallel-batch) - Parallel execution with concurrency limits
|
|
204
268
|
- [ring-buffer](./src/lib/ring-buffer) - Circular buffer for running LLMs on streams of data
|
|
205
|
-
- [embed-normalize-text](./src/lib/embed-normalize-text) - Normalize text (NFC, whitespace, line endings) for consistent embedding
|
|
206
|
-
- [embed-neighbor-chunks](./src/lib/embed-neighbor-chunks) - Expand retrieved chunks with neighboring context
|
|
207
269
|
- [progress](./src/lib/progress) - Progress event system: lifecycle tracking, batch progress, event emission
|
|
208
270
|
|
|
209
271
|
## Contributing
|
package/dist/index.browser.js
CHANGED
|
@@ -1,238 +1,234 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { cS as a } from "./shared-CNTi6iN9.js";
|
|
2
|
+
import { cP as c, L as r, I as i, M as n, b$ as o, aL as l, bZ as b, aH as m, K as p, D as u, J as d, cN as g, c6 as S, c1 as h, c2 as T, an as v, cM as y, c4 as E, e as I, c5 as R, Q as C, c7 as f, b1 as M, c3 as B, b4 as P, c0 as x, bT as O, bl as N, bg as A, bh as L, bS as k, a4 as D, a3 as F, bj as w, u as z, aE as j, bi as V, aa as W, F as K, H as Q, G as U, bP as _, aD as G, be as Y, a6 as q, a7 as J, cu as H, bM as X, x as Z, bY as $, aF as aa, bK as sa, aG as ea, cv as ta, b6 as ca, cR as ra, t as ia, aI as na, cw as oa, bO as la, N as ba, c as ma, W as pa, v as ua, bN as da, r as ga, U as Sa, a8 as ha, a9 as Ta, ao as va, aJ as ya, aM as Ea, aO as Ia, br as Ra, bI as Ca, bs as fa, bG as Ma, bt as Ba, bw as Pa, bx as xa, bH as Oa, bA as Na, bF as Aa, bE as La, cK as ka, bz as Da, bD as Fa, bJ as wa, bB as za, bC as ja, bu as Va, ad as Wa, ac as Ka, a1 as Qa, a2 as Ua, X as _a, bk as Ga, ae as Ya, ab as qa, cl as Ja, aX as Ha, aP as Xa, af as Za, aQ as $a, ce as as, ag as ss, cf as es, al as ts, aK as cs, S as rs, T as is, g as ns, ah as os, ai as ls, ch as bs, cQ as ms, bm as ps, aj as us, aR as ds, j as gs, cx as Ss, ak as hs, am as Ts, ap as vs, r as ys, bn as Es, bo as Is, aq as Rs, cd as Cs, aB as fs, aS as Ms, aT as Bs, n as Ps, bV as xs, bQ as Os, aw as Ns, y as As, z as Ls, P as ks, R as Ds, cy as Fs, c9 as ws, ca as zs, cc as js, c8 as Vs, cb as Ws, p as Ks, bR as Qs, ct as Us, aZ as _s, a_ as Gs, aU as Ys, bo as qs, cz as Js, cF as Hs, aV as Xs, cI as Zs, cJ as $s, cG as ae, aW as se, bL as ee, f as te, cg as ce, a$ as re, aY as ie, h as ne, cO as oe, cL as le, k as be, l as me, b_ as pe, C as ue, A as de, B as ge, b0 as Se, cH as he, bd as Te, s as ve, ar as ye, by as Ee, au as Ie, at as Re, av as Ce, ax as fe, as as Me, bp as Be, bv as Pe, bq as xe, cE as Oe, aN as Ne, bX as Ae, b2 as Le, bf as ke, ay as De, cA as Fe, b3 as we, cn as ze, cm as je, a5 as Ve, aC as We, az as Ke, aA as Qe, b5 as Ue, Z as _e, _ as Ge, Y as Ye, a0 as qe, bW as Je, bU as He, b7 as Xe, b8 as Ze, co as $e, cq as at, cr as st, cp as et, cs as tt, b9 as ct, ba as rt, cB as it, $ as nt, V as ot, cC as lt, bc as bt, bb as mt, ci as pt, cj as ut, ck as dt, w as gt, cD as St } from "./shared-CNTi6iN9.js";
|
|
3
3
|
a();
|
|
4
4
|
export {
|
|
5
5
|
c as CAPABILITY_KEYS,
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
r as COMPLIANCE,
|
|
7
|
+
i as CONTEXT_KINDS,
|
|
8
8
|
n as COST_POSTURE,
|
|
9
9
|
o as ChainEvent,
|
|
10
|
-
l as
|
|
11
|
-
b as
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
d as
|
|
16
|
-
g as
|
|
17
|
-
S as
|
|
18
|
-
|
|
19
|
-
T as
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
C as
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
N as
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
D as
|
|
37
|
-
|
|
38
|
-
w as
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
K as bool,
|
|
42
|
-
U as buildSeedGenerationPrompt,
|
|
10
|
+
l as ChainTree,
|
|
11
|
+
b as ContextBudget,
|
|
12
|
+
m as Conversation,
|
|
13
|
+
p as DOMAIN,
|
|
14
|
+
u as DomainEvent,
|
|
15
|
+
d as ENVIRONMENT,
|
|
16
|
+
g as EmbeddingService,
|
|
17
|
+
S as ErrorCategory,
|
|
18
|
+
h as Kind,
|
|
19
|
+
T as Level,
|
|
20
|
+
v as ListStyle,
|
|
21
|
+
y as ModelService,
|
|
22
|
+
E as ModelSource,
|
|
23
|
+
I as OpEvent,
|
|
24
|
+
R as OptionSource,
|
|
25
|
+
C as QUALITY_INTENT,
|
|
26
|
+
f as RetryMode,
|
|
27
|
+
M as SocraticMethod,
|
|
28
|
+
B as StatusCode,
|
|
29
|
+
P as SummaryMap,
|
|
30
|
+
x as TelemetryEvent,
|
|
31
|
+
O as TimedAbortController,
|
|
32
|
+
N as aiExpect,
|
|
33
|
+
A as analyzeImage,
|
|
34
|
+
L as analyzeImageMapDetail,
|
|
35
|
+
k as anySignal,
|
|
36
|
+
D as applyAllTargetingRules,
|
|
37
|
+
F as applyFirstTargetingRule,
|
|
38
|
+
w as auto,
|
|
39
|
+
z as bool,
|
|
40
|
+
j as buildSeedGenerationPrompt,
|
|
43
41
|
V as buildVisionPrompt,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
Q as
|
|
47
|
-
|
|
42
|
+
W as calculateStatistics,
|
|
43
|
+
K as calibrate,
|
|
44
|
+
Q as calibrateInstructions,
|
|
45
|
+
U as calibrateSpec,
|
|
46
|
+
_ as callAgent,
|
|
47
|
+
G as categorySamples,
|
|
48
48
|
Y as causalFramePrompt,
|
|
49
49
|
q as centralTendency,
|
|
50
50
|
J as centralTendencyLines,
|
|
51
51
|
H as chunk,
|
|
52
52
|
X as chunkSentences,
|
|
53
53
|
Z as classify,
|
|
54
|
-
$ as
|
|
55
|
-
aa as
|
|
56
|
-
sa as
|
|
57
|
-
ea as
|
|
58
|
-
ta as
|
|
59
|
-
ca as
|
|
54
|
+
$ as collectEventsWith,
|
|
55
|
+
aa as collectTerms,
|
|
56
|
+
sa as combinations,
|
|
57
|
+
ea as commonalities,
|
|
58
|
+
ta as compact,
|
|
59
|
+
ca as computeTagStatistics,
|
|
60
|
+
ra as config,
|
|
60
61
|
ia as constants,
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
la as createCalibratedClassifier,
|
|
62
|
+
na as conversationTurnReduce,
|
|
63
|
+
oa as cosineSimilarity,
|
|
64
|
+
la as createBatches,
|
|
65
65
|
ba as createContextBuilder,
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
da as
|
|
70
|
-
ga as
|
|
71
|
-
Sa as
|
|
72
|
-
|
|
73
|
-
Ta as
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
Ca as
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
Na as
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
Da as
|
|
91
|
-
|
|
92
|
-
wa as
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
Ya as
|
|
103
|
-
qa as
|
|
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
|
-
cs as
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
ns as
|
|
117
|
-
os as
|
|
118
|
-
ls as
|
|
119
|
-
bs as
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
ds as
|
|
124
|
-
gs as
|
|
125
|
-
Ss as
|
|
126
|
-
|
|
127
|
-
Ts as
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
Cs as
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
Ns as
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
66
|
+
ma as createProgressEmitter,
|
|
67
|
+
pa as createTraceCollector,
|
|
68
|
+
ua as date,
|
|
69
|
+
da as debug,
|
|
70
|
+
ga as default,
|
|
71
|
+
Sa as descriptorToSchema,
|
|
72
|
+
ha as detectPatterns,
|
|
73
|
+
Ta as detectThreshold,
|
|
74
|
+
va as determineStyle,
|
|
75
|
+
ya as disambiguate,
|
|
76
|
+
Ea as dismantle,
|
|
77
|
+
Ia as documentShrink,
|
|
78
|
+
Ra as embed,
|
|
79
|
+
Ca as embedAssembleSpan,
|
|
80
|
+
fa as embedBatch,
|
|
81
|
+
Ma as embedBuildIndex,
|
|
82
|
+
Ba as embedChunked,
|
|
83
|
+
Pa as embedImage,
|
|
84
|
+
xa as embedImageBatch,
|
|
85
|
+
Oa as embedMergeRanges,
|
|
86
|
+
Na as embedMultiQuery,
|
|
87
|
+
Aa as embedNeighborChunks,
|
|
88
|
+
La as embedNormalizeText,
|
|
89
|
+
ka as embedObject,
|
|
90
|
+
Da as embedRewriteQuery,
|
|
91
|
+
Fa as embedRewriteToOutputDoc,
|
|
92
|
+
wa as embedStandaloneSpan,
|
|
93
|
+
za as embedStepBack,
|
|
94
|
+
ja as embedSubquestions,
|
|
95
|
+
Va as embedWarmup,
|
|
96
|
+
Wa as entityInstructions,
|
|
97
|
+
Ka as entitySpec,
|
|
98
|
+
Qa as evaluateTargetingClause,
|
|
99
|
+
Ua as evaluateTargetingRule,
|
|
100
|
+
_a as eventToTrace,
|
|
101
|
+
Ga as expect,
|
|
102
|
+
Ya as extractBlocks,
|
|
103
|
+
qa as extractEntities,
|
|
104
|
+
Ja as extractJson,
|
|
105
|
+
Ha as extractRelations,
|
|
106
|
+
Xa as fillMissing,
|
|
107
|
+
Za as filter,
|
|
108
|
+
$a as filterAmbiguous,
|
|
109
|
+
as as filterEach,
|
|
110
|
+
ss as find,
|
|
111
|
+
es as findEach,
|
|
112
|
+
ts as generateList,
|
|
113
|
+
cs as getMeanings,
|
|
114
|
+
rs as getOption,
|
|
115
|
+
is as getOptionDetail,
|
|
116
|
+
ns as getOptions,
|
|
117
|
+
os as glossary,
|
|
118
|
+
ls as group,
|
|
119
|
+
bs as groupEach,
|
|
120
|
+
ms as init,
|
|
121
|
+
ps as intent,
|
|
122
|
+
us as intersections,
|
|
123
|
+
ds as join,
|
|
124
|
+
gs as jsonSchema,
|
|
125
|
+
Ss as last,
|
|
126
|
+
hs as list,
|
|
127
|
+
Ts as listBatch,
|
|
128
|
+
vs as listExpand,
|
|
129
|
+
ys as llm,
|
|
130
|
+
Es as llmLogger,
|
|
131
|
+
Is as makePrompt,
|
|
132
|
+
Rs as map,
|
|
133
|
+
Cs as mapEach,
|
|
134
|
+
fs as mapTags,
|
|
135
|
+
Ms as name,
|
|
136
|
+
Bs as nameSimilarTo,
|
|
137
|
+
Ps as nameStep,
|
|
138
|
+
xs as normalizeInstruction,
|
|
139
|
+
Os as normalizeLlm,
|
|
140
|
+
Ns as normalizeRubric,
|
|
141
|
+
As as number,
|
|
142
|
+
Ls as numberWithUnits,
|
|
143
|
+
ks as observeApplication,
|
|
144
144
|
Ds as observeProviders,
|
|
145
|
-
|
|
146
|
-
ws as
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
Ys as
|
|
157
|
-
qs as
|
|
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
|
-
ce as
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
ne as
|
|
171
|
-
oe as
|
|
172
|
-
le as
|
|
173
|
-
be as
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
de as
|
|
178
|
-
ge as
|
|
179
|
-
Se as
|
|
180
|
-
|
|
181
|
-
Te as
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
Ce as
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
Ne as
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
De as
|
|
199
|
-
|
|
200
|
-
we as
|
|
201
|
-
Ge as split,
|
|
145
|
+
Fs as omit,
|
|
146
|
+
ws as pFilter,
|
|
147
|
+
zs as pFind,
|
|
148
|
+
js as pGroup,
|
|
149
|
+
Vs as pMap,
|
|
150
|
+
Ws as pReduce,
|
|
151
|
+
Ks as parallel,
|
|
152
|
+
Qs as parallelMap,
|
|
153
|
+
Us as parseLLMList,
|
|
154
|
+
_s as parseRDFLiteral,
|
|
155
|
+
Gs as parseRelations,
|
|
156
|
+
Ys as people,
|
|
157
|
+
qs as phailForge,
|
|
158
|
+
Js as pick,
|
|
159
|
+
Hs as pipe,
|
|
160
|
+
Xs as popReference,
|
|
161
|
+
Zs as promptCache,
|
|
162
|
+
$s as promptPiece,
|
|
163
|
+
ae as prompts,
|
|
164
|
+
se as questions,
|
|
165
|
+
ee as rangeCombinations,
|
|
166
|
+
te as reduce,
|
|
167
|
+
ce as reduceEach,
|
|
168
|
+
re as relationInstructions,
|
|
169
|
+
ie as relationSpec,
|
|
170
|
+
ne as resolveArgs,
|
|
171
|
+
oe as resolveEmbedding,
|
|
172
|
+
le as resolveModel,
|
|
173
|
+
be as resolveTexts,
|
|
174
|
+
me as retry,
|
|
175
|
+
pe as ringBuffer,
|
|
176
|
+
ue as scaleInstructions,
|
|
177
|
+
de as scaleItem,
|
|
178
|
+
ge as scaleSpec,
|
|
179
|
+
Se as schemaOrg,
|
|
180
|
+
he as schemas,
|
|
181
|
+
Te as scientificFramingPrompt,
|
|
182
|
+
ve as scopePhase,
|
|
183
|
+
ye as score,
|
|
184
|
+
Ee as scoreChunksByProbes,
|
|
185
|
+
Ie as scoreInstructions,
|
|
186
|
+
Re as scoreItem,
|
|
187
|
+
Ce as scoreMatrix,
|
|
188
|
+
fe as scoreMatrixInstructions,
|
|
189
|
+
Me as scoreSpec,
|
|
190
|
+
Be as sentiment,
|
|
191
|
+
Pe as setEmbedEnabled,
|
|
192
|
+
xe as setInterval,
|
|
193
|
+
Oe as shuffle,
|
|
194
|
+
Ne as simplifyTree,
|
|
195
|
+
Ae as slot,
|
|
196
|
+
Le as socratic,
|
|
197
|
+
ke as softCoverPrompt,
|
|
198
|
+
De as sort,
|
|
199
|
+
Fe as sortBy,
|
|
200
|
+
we as split,
|
|
202
201
|
ze as stripNumeric,
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
rt as
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
Tt as withInactivityTimeout,
|
|
236
|
-
yt as withPolicy,
|
|
237
|
-
ht as zipWith
|
|
202
|
+
je as stripResponse,
|
|
203
|
+
Ve as suggestTargetingRules,
|
|
204
|
+
We as tagInstructions,
|
|
205
|
+
Ke as tagItem,
|
|
206
|
+
Qe as tagSpec,
|
|
207
|
+
Ue as tagVocabulary,
|
|
208
|
+
_e as targetingClause,
|
|
209
|
+
Ge as targetingRule,
|
|
210
|
+
Ye as targetingRuleOps,
|
|
211
|
+
qe as targetingRuleSchema,
|
|
212
|
+
Je as templateBuilder,
|
|
213
|
+
He as templateReplace,
|
|
214
|
+
Xe as themes,
|
|
215
|
+
Ze as timeline,
|
|
216
|
+
$e as toBool,
|
|
217
|
+
at as toDate,
|
|
218
|
+
st as toEnum,
|
|
219
|
+
et as toNumber,
|
|
220
|
+
tt as toNumberWithUnits,
|
|
221
|
+
ct as toObject,
|
|
222
|
+
rt as truncate,
|
|
223
|
+
it as unionBy,
|
|
224
|
+
nt as validateTargetingRules,
|
|
225
|
+
ot as valueArbitrate,
|
|
226
|
+
lt as vectorSearch,
|
|
227
|
+
bt as veiledVariantStrategies,
|
|
228
|
+
mt as veiledVariants,
|
|
229
|
+
pt as version,
|
|
230
|
+
ut as windowFor,
|
|
231
|
+
dt as withInactivityTimeout,
|
|
232
|
+
gt as withPolicy,
|
|
233
|
+
St as zipWith
|
|
238
234
|
};
|