@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 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
@@ -1,238 +1,234 @@
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";
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
- i as COMPLIANCE,
7
- r as CONTEXT_KINDS,
6
+ r as COMPLIANCE,
7
+ i as CONTEXT_KINDS,
8
8
  n as COST_POSTURE,
9
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,
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
- _ as calculateStatistics,
45
- j as calibrate,
46
- Q as calibrateSpec,
47
- W as categorySamples,
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 collectTerms,
55
- aa as combinations,
56
- sa as commonalities,
57
- ea as compact,
58
- ta as computeTagStatistics,
59
- ca as config,
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
- ra as conversationTurnReduce,
62
- na as cosineSimilarity,
63
- oa as createBatches,
64
- la as createCalibratedClassifier,
62
+ na as conversationTurnReduce,
63
+ oa as cosineSimilarity,
64
+ la as createBatches,
65
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,
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
- 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,
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
- 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
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
  };