@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 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, score } from '@far-world-labs/verblets';
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 sets up internal services. Call it once at startup. It accepts optional configuration:
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
- modelOverrides: { // override default model selection
45
- modelName: 'claude-sonnet-4-20250514',
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`, `scopeOperation`
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
@@ -1,228 +1,238 @@
1
- import { cM as a } from "./shared-BSAzZOFX.js";
2
- import { cJ as i, P as r, L as c, R as n, aY as o, N as l, M as b, aw as p, Q as u, bo as m, br as g, cc as d, bI as I, bD as S, bE as T, cb as y, a7 as h, J as R, ag as v, a6 as C, be as E, z as f, aC as M, aM as F, bG as P, p as B, aV as L, bF as N, ad as x, H as A, I as O, aU as k, bB as w, a9 as D, aa as G, cr as z, c5 as V, t as U, aW as W, c3 as _, aX as q, cs as K, bt as Q, cL as Y, m as j, aZ as J, ct as H, c7 as X, K as Z, S as $, ah as aa, c as sa, bf as ea, A as ta, aN as ia, aO as ra, Z as ca, q as na, c6 as oa, r as la, X as ba, ab as pa, ac as ua, ax as ma, a_ as ga, b0 as da, b2 as Ia, b3 as Sa, bO as Ta, c1 as ya, bP as ha, b$ as Ra, bQ as va, c0 as Ca, bV as Ea, b_ as fa, bZ as Ma, bU as Fa, bY as Pa, bT as Ba, c2 as La, bW as Na, bX as xa, bR as Aa, ae as Oa, aj as ka, al as wa, am as Da, ai as Ga, ak as za, af as Va, a4 as Ua, a5 as Wa, _ as _a, bH as qa, an as Ka, ci as Qa, b4 as Ya, ao as ja, b5 as Ja, ap as Ha, au as Xa, cI as Za, a$ as $a, V as as, W as ss, g as es, aq as ts, ar as is, cK as rs, bJ as cs, as as ns, b6 as os, cu as ls, at as bs, av as ps, ay as us, r as ms, bK as gs, bL as ds, az as Is, b7 as Ss, b8 as Ts, n as ys, c8 as hs, u as Rs, v as vs, T as Cs, U as Es, cv as fs, c9 as Ms, ca as Fs, cq as Ps, bg as Bs, bh as Ls, b9 as Ns, bL as xs, cw as As, cC as Os, ba as ks, G as ws, cF as Ds, cG as Gs, cD as zs, bb as Vs, c4 as Us, d as Ws, bd as _s, bc as qs, bj as Ks, bl as Qs, bm as Ys, bi as js, bk as Js, cH as Hs, f as Xs, ce as Zs, x as $s, C as ae, E as se, F as ee, B as te, D as ie, y as re, bn as ce, cE as ne, bA as oe, s as le, aA as be, aF as pe, aH as ue, aI as me, aD as ge, aE as de, aG as Ie, aB as Se, bM as Te, o as ye, bS as he, bN as Re, cB as ve, b1 as Ce, bp as Ee, bC as fe, aJ as Me, cx as Fe, bq as Pe, ck as Be, cj as Le, a8 as Ne, aL as xe, bs as Ae, aK as Oe, aQ as ke, aS as we, aT as De, aP as Ge, aR as ze, a0 as Ve, a1 as Ue, $ as We, a3 as _e, cd as qe, bu as Ke, bv as Qe, cl as Ye, cn as je, co as Je, cm as He, cp as Xe, bw as Ze, bx as $e, cy as at, a2 as st, Y as et, cz as tt, bz as it, by as rt, cf as ct, cg as nt, ch as ot, w as lt, cA as bt } from "./shared-BSAzZOFX.js";
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
- i as CAPABILITY_KEYS,
6
- r as COMPLIANCE,
7
- c as CONTEXT_KINDS,
5
+ c as CAPABILITY_KEYS,
6
+ i as COMPLIANCE,
7
+ r as CONTEXT_KINDS,
8
8
  n as COST_POSTURE,
9
- o as Conversation,
10
- l as DOMAIN,
11
- b as ENVIRONMENT,
12
- p as ListStyle,
13
- u as QUALITY_INTENT,
14
- m as SocraticMethod,
15
- g as SummaryMap,
16
- d as TimedAbortController,
17
- I as aiExpect,
18
- S as analyzeImage,
19
- T as analyzeImageMapDetail,
20
- y as anySignal,
21
- h as applyAllTargetingRules,
22
- R as applyCalibrate,
23
- v as applyEntities,
24
- C as applyFirstTargetingRule,
25
- E as applyRelations,
26
- f as applyScale,
27
- M as applyScore,
28
- F as applyTags,
29
- P as auto,
30
- B as bool,
31
- L as buildSeedGenerationPrompt,
32
- N as buildVisionPrompt,
33
- x as calculateStatistics,
34
- A as calibrate,
35
- O as calibrateSpec,
36
- k as categorySamples,
37
- w as causalFramePrompt,
38
- D as centralTendency,
39
- G as centralTendencyLines,
40
- z as chunk,
41
- V as chunkSentences,
42
- U as classify,
43
- W as collectTerms,
44
- _ as combinations,
45
- q as commonalities,
46
- K as compact,
47
- Q as computeTagStatistics,
48
- Y as config,
49
- j as constants,
50
- J as conversationTurnReduce,
51
- H as cosineSimilarity,
52
- X as createBatches,
53
- Z as createCalibratedClassifier,
54
- $ as createContextBuilder,
55
- aa as createEntityExtractor,
56
- sa as createProgressEmitter,
57
- ea as createRelationExtractor,
58
- ta as createScale,
59
- ia as createTagExtractor,
60
- ra as createTagger,
61
- ca as createTraceCollector,
62
- na as date,
63
- oa as debug,
64
- la as default,
65
- ba as descriptorToSchema,
66
- pa as detectPatterns,
67
- ua as detectThreshold,
68
- ma as determineStyle,
69
- ga as disambiguate,
70
- da as dismantle,
71
- Ia as dismantleFactory,
72
- Sa as documentShrink,
73
- Ta as embed,
74
- ya as embedAssembleSpan,
75
- ha as embedBatch,
76
- Ra as embedBuildIndex,
77
- va as embedChunked,
78
- Ca as embedMergeRanges,
79
- Ea as embedMultiQuery,
80
- fa as embedNeighborChunks,
81
- Ma as embedNormalizeText,
82
- Fa as embedRewriteQuery,
83
- Pa as embedRewriteToOutputDoc,
84
- Ba as embedScore,
85
- La as embedStandaloneSpan,
86
- Na as embedStepBack,
87
- xa as embedSubquestions,
88
- Aa as embedWarmup,
89
- Oa as entities,
90
- ka as entitiesFilterInstructions,
91
- wa as entitiesFindInstructions,
92
- Da as entitiesGroupInstructions,
93
- Ga as entitiesMapInstructions,
94
- za as entitiesReduceInstructions,
95
- Va as entitySpec,
96
- Ua as evaluateTargetingClause,
97
- Wa as evaluateTargetingRule,
98
- _a as eventToTrace,
99
- qa as expect,
100
- Ka as extractBlocks,
101
- Qa as extractJson,
102
- Ya as fillMissing,
103
- ja as filter,
104
- Ja as filterAmbiguous,
105
- Ha as find,
106
- Xa as generateList,
107
- Za as getCapabilities,
108
- $a as getMeanings,
109
- as as getOption,
110
- ss as getOptionDetail,
111
- es as getOptions,
112
- ts as glossary,
113
- is as group,
114
- rs as init,
115
- cs as intent,
116
- ns as intersections,
117
- os as join,
118
- ls as last,
119
- bs as list,
120
- ps as listBatch,
121
- us as listExpand,
122
- ms as llm,
123
- gs as llmLogger,
124
- ds as makePrompt,
125
- Is as map,
126
- Ss as name,
127
- Ts as nameSimilarTo,
128
- ys as nameStep,
129
- hs as normalizeLlm,
130
- Rs as number,
131
- vs as numberWithUnits,
132
- Cs as observeApplication,
133
- Es as observeProviders,
134
- fs as omit,
135
- Ms as parallel,
136
- Fs as parallelMap,
137
- Ps as parseLLMList,
138
- Bs as parseRDFLiteral,
139
- Ls as parseRelations,
140
- Ns as people,
141
- xs as phailForge,
142
- As as pick,
143
- Os as pipe,
144
- ks as popReference,
145
- ws as probeScan,
146
- Ds as promptCache,
147
- Gs as promptPiece,
148
- zs as prompts,
149
- Vs as questions,
150
- Us as rangeCombinations,
151
- Ws as reduce,
152
- _s as relationSpec,
153
- qs as relations,
154
- Ks as relationsFilterInstructions,
155
- Qs as relationsFindInstructions,
156
- Ys as relationsGroupInstructions,
157
- js as relationsMapInstructions,
158
- Js as relationsReduceInstructions,
159
- Hs as resolveModel,
160
- Xs as retry,
161
- Zs as ringBuffer,
162
- $s as scale,
163
- ae as scaleFilterInstructions,
164
- se as scaleFindInstructions,
165
- ee as scaleGroupInstructions,
166
- te as scaleMapInstructions,
167
- ie as scaleReduceInstructions,
168
- re as scaleSpec,
169
- ce as schemaOrg,
170
- ne as schemas,
171
- oe as scientificFramingPrompt,
172
- le as scopePhase,
173
- be as score,
174
- pe as scoreFilterInstructions,
175
- ue as scoreFindInstructions,
176
- me as scoreGroupInstructions,
177
- ge as scoreItem,
178
- de as scoreMapInstructions,
179
- Ie as scoreReduceInstructions,
180
- Se as scoreSpec,
181
- Te as sentiment,
182
- ye as services,
183
- he as setEmbedEnabled,
184
- Re as setInterval,
185
- ve as shuffle,
186
- Ce as simplifyTree,
187
- Ee as socratic,
188
- fe as softCoverPrompt,
189
- Me as sort,
190
- Fe as sortBy,
191
- Pe as split,
192
- Be as stripNumeric,
193
- Le as stripResponse,
194
- Ne as suggestTargetingRules,
195
- xe as tagSpec,
196
- Ae as tagVocabulary,
197
- Oe as tags,
198
- ke as tagsFilterInstructions,
199
- we as tagsFindInstructions,
200
- De as tagsGroupInstructions,
201
- Ge as tagsMapInstructions,
202
- ze as tagsReduceInstructions,
203
- Ve as targetingClause,
204
- Ue as targetingRule,
205
- We as targetingRuleOps,
206
- _e as targetingRuleSchema,
207
- qe as templateReplace,
208
- Ke as themes,
209
- Qe as timeline,
210
- Ye as toBool,
211
- je as toDate,
212
- Je as toEnum,
213
- He as toNumber,
214
- Xe as toNumberWithUnits,
215
- Ze as toObject,
216
- $e as truncate,
217
- at as unionBy,
218
- st as validateTargetingRules,
219
- et as valueArbitrate,
220
- tt as vectorSearch,
221
- it as veiledVariantStrategies,
222
- rt as veiledVariants,
223
- ct as version,
224
- nt as windowFor,
225
- ot as withInactivityTimeout,
226
- lt as withPolicy,
227
- bt as zipWith
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
  };