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