@far-world-labs/verblets 0.4.0 → 0.6.0
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 +33 -25
- package/dist/index.browser.js +212 -208
- package/dist/index.js +386 -381
- package/dist/{shared-CMgpfDG4.js → shared-CX9VHytb.js} +4981 -4797
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,19 +24,21 @@ Primitive verblets extract basic data types from natural language with high reli
|
|
|
24
24
|
|
|
25
25
|
- [bool](./src/verblets/bool) - Interpret yes/no, true/false, and conditional statements
|
|
26
26
|
- [date](./src/chains/date) - Parse dates from relative expressions, natural language, standard formats, and longer descriptions
|
|
27
|
-
- [
|
|
27
|
+
- [classify](./src/verblets/enum) - Classify free-form input into exactly one of several predefined options
|
|
28
28
|
- [number](./src/verblets/number) - Convert a block of text to a single number
|
|
29
29
|
- [number-with-units](./src/verblets/number-with-units) - Parse measurements and convert between unit systems
|
|
30
30
|
|
|
31
31
|
### Math
|
|
32
32
|
|
|
33
|
-
Math chains transform values using conceptual reasoning and subjective
|
|
33
|
+
Math chains transform values using conceptual reasoning and subjective judgment beyond simple calculations.
|
|
34
34
|
|
|
35
|
-
- [scale](./src/chains/scale) - Convert qualitative descriptions to numeric values
|
|
35
|
+
- [scale](./src/chains/scale) - Convert qualitative descriptions to numeric values using a specification generator for consistency across invocations
|
|
36
|
+
- [calibrate](./src/chains/calibrate) - Build and apply specification-based classifiers with adjustable sensitivity
|
|
37
|
+
- [probe-scan](./src/chains/probe-scan) - Scan items for relevance using embedding similarity with configurable detection thresholds
|
|
36
38
|
|
|
37
39
|
### Lists
|
|
38
40
|
|
|
39
|
-
List operations transform, filter, and organize collections. They handle both individual items and batch processing for datasets larger than a context window. Many
|
|
41
|
+
List operations transform, filter, and organize collections. They handle both individual items and batch processing for datasets larger than a context window. Many support bulk operation with built-in retry. Some have single-invocation alternatives in the verblets directory. Several use specification-generators that maintain continuity across batches, or prompt fragments that adapt single-invocation behavior to list processing.
|
|
40
42
|
|
|
41
43
|
- [central-tendency](./src/chains/central-tendency) - Find the most representative examples from a collection
|
|
42
44
|
- [detect-patterns](./src/chains/detect-patterns) - Identify repeating structures, sequences, or relationships in data
|
|
@@ -57,16 +59,16 @@ List operations transform, filter, and organize collections. They handle both in
|
|
|
57
59
|
|
|
58
60
|
### Content
|
|
59
61
|
|
|
60
|
-
Content utilities generate, transform, and analyze text while maintaining structure and meaning.
|
|
62
|
+
Content utilities generate, transform, and analyze text while maintaining structure and meaning.
|
|
61
63
|
|
|
62
|
-
- [
|
|
63
|
-
- [category-samples](./src/chains/category-samples) - Create examples ranging from typical to edge cases
|
|
64
|
+
- [category-samples](./src/chains/category-samples) - Generate examples ranging from prototypical to edge cases using cognitive science sampling
|
|
64
65
|
- [collect-terms](./src/chains/collect-terms) - Find domain-specific or complex vocabulary
|
|
65
66
|
- [commonalities](./src/verblets/commonalities) - Identify what items share conceptually, not just literally
|
|
66
|
-
- [
|
|
67
|
+
- [Conversation](./src/chains/conversation) - Generate multi-speaker transcripts with contextual turn-taking and distinct personas
|
|
67
68
|
- [disambiguate](./src/chains/disambiguate) - Determine which meaning of ambiguous terms fits the context
|
|
68
69
|
- [dismantle](./src/chains/dismantle) - Break down systems into parts, subparts, and their connections
|
|
69
|
-
- [document-shrink](./src/chains/document-shrink) -
|
|
70
|
+
- [document-shrink](./src/chains/document-shrink) - Compress documents using adaptive TF-IDF scoring while preserving query-relevant content
|
|
71
|
+
- [extract-blocks](./src/chains/extract-blocks) - Extract structured blocks from text with windowed parallel processing
|
|
70
72
|
- [fill-missing](./src/verblets/fill-missing) - Predict likely content for redacted or corrupted sections
|
|
71
73
|
- [filter-ambiguous](./src/chains/filter-ambiguous) - Flag items that need human clarification
|
|
72
74
|
- [join](./src/chains/join) - Connect text fragments by adding transitions and maintaining flow
|
|
@@ -77,39 +79,42 @@ Content utilities generate, transform, and analyze text while maintaining struct
|
|
|
77
79
|
- [questions](./src/chains/questions) - Generate follow-up questions that branch from initial inquiry
|
|
78
80
|
- [relations](./src/chains/relations) - Extract relationship tuples from text
|
|
79
81
|
- [schema-org](./src/verblets/schema-org) - Convert unstructured data to schema.org JSON-LD format
|
|
80
|
-
- [
|
|
82
|
+
- [SocraticMethod](./src/chains/socratic) - Progressive questioning dialogue with configurable challenge intensity
|
|
81
83
|
- [split](./src/chains/split) - Find topic boundaries in continuous text
|
|
82
|
-
- [
|
|
84
|
+
- [SummaryMap](./src/chains/summary-map) - Token-budget hash table that compresses values to fit a target size
|
|
83
85
|
- [tag-vocabulary](./src/chains/tag-vocabulary) - Generate and refine tag vocabularies through iterative analysis
|
|
84
86
|
- [themes](./src/chains/themes) - Surface recurring ideas through multi-pass extraction and merging
|
|
85
87
|
- [timeline](./src/chains/timeline) - Order events chronologically from scattered mentions
|
|
86
88
|
- [to-object](./src/chains/to-object) - Extract key-value pairs from natural language descriptions
|
|
87
89
|
- [truncate](./src/chains/truncate) - Remove trailing content after a semantic boundary
|
|
88
|
-
- [veiled-variants](./src/chains/veiled-variants) -
|
|
90
|
+
- [veiled-variants](./src/chains/veiled-variants) - Reframe queries through scientific, causal, and soft-cover strategies
|
|
89
91
|
|
|
90
92
|
|
|
91
93
|
### Retrieval
|
|
92
94
|
|
|
93
|
-
Retrieval utilities transform queries and prepare text for search and RAG workflows.
|
|
95
|
+
Retrieval utilities transform queries and prepare text for search and RAG (retrieval-augmented generation) workflows. All query-rewriting verblets accept a `divergence` option controlling how far variants stray from the original.
|
|
94
96
|
|
|
95
97
|
- [embed-rewrite-query](./src/verblets/embed-rewrite-query) - Rewrite search queries for clarity and specificity
|
|
96
98
|
- [embed-multi-query](./src/verblets/embed-multi-query) - Generate diverse query variants for broader retrieval
|
|
97
99
|
- [embed-step-back](./src/verblets/embed-step-back) - Broaden queries to underlying concepts and principles
|
|
98
100
|
- [embed-subquestions](./src/verblets/embed-subquestions) - Split complex queries into atomic sub-questions
|
|
101
|
+
- [embed-rewrite-to-output-doc](./src/verblets/embed-rewrite-to-output-doc) - Rewrite a query as if it were the answer document
|
|
102
|
+
- [embed-score](./src/lib/embed-score) - Score and rank items against a query using embedding similarity
|
|
99
103
|
|
|
100
104
|
|
|
101
105
|
### Utility Operations
|
|
102
106
|
|
|
103
|
-
Utility operations
|
|
107
|
+
Utility operations handle automatic tool selection, intent parsing, prompt enhancement, and scheduling.
|
|
104
108
|
|
|
105
|
-
- [ai-arch-expect](./src/chains/ai-arch-expect) - Validate AI architecture constraints and patterns
|
|
106
109
|
- [auto](./src/verblets/auto) - Match task descriptions to available tools using function calling
|
|
107
|
-
- [expect](./src/verblets/expect) -
|
|
108
|
-
- [
|
|
110
|
+
- [expect](./src/verblets/expect) - Jest-style AI assertions: `expect(actual).toEqual(expected)`
|
|
111
|
+
- [aiExpect](./src/chains/expect) - AI-powered test expectations with source introspection and debugging advice
|
|
109
112
|
- [intent](./src/verblets/intent) - Extract action and parameters from natural language commands
|
|
110
|
-
- [
|
|
111
|
-
- [sentiment](./src/verblets/sentiment) - Classify as positive, negative, or neutral
|
|
113
|
+
- [phail-forge / makePrompt](./src/verblets/phail-forge) - Transform simple prompts into expert-level prompts with precise terminology
|
|
114
|
+
- [sentiment](./src/verblets/sentiment) - Classify text as positive, negative, or neutral
|
|
112
115
|
- [set-interval](./src/chains/set-interval) - Schedule tasks using natural language time descriptions
|
|
116
|
+
- [llm-logger](./src/chains/llm-logger) - Summarize log patterns and detect anomalies across time windows
|
|
117
|
+
- [ai-arch-expect](./src/chains/ai-arch-expect) - Validate architecture constraints using AI analysis
|
|
113
118
|
|
|
114
119
|
### Codebase
|
|
115
120
|
|
|
@@ -121,14 +126,17 @@ Codebase utilities analyze, test, and improve code quality using AI reasoning.
|
|
|
121
126
|
|
|
122
127
|
## Library Helpers
|
|
123
128
|
|
|
124
|
-
|
|
129
|
+
Low-level utilities that support chains and verblets. Most are synchronous and make no LLM calls.
|
|
125
130
|
|
|
126
|
-
- [llm](./src/lib/llm) - LLM wrapper
|
|
127
|
-
- [
|
|
128
|
-
- [
|
|
129
|
-
- [
|
|
130
|
-
- [
|
|
131
|
+
- [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`
|
|
133
|
+
- [prompt-cache](./src/lib/prompt-cache) - Cache LLM prompts and responses
|
|
134
|
+
- [retry](./src/lib/retry) - Config-aware async retry
|
|
135
|
+
- [parallel-batch](./src/lib/parallel-batch) - Parallel execution with concurrency limits
|
|
136
|
+
- [ring-buffer](./src/lib/ring-buffer) - Circular buffer for running LLMs on streams of data
|
|
137
|
+
- [embed-normalize-text](./src/lib/embed-normalize-text) - Normalize text (NFC, whitespace, line endings) for consistent embedding
|
|
131
138
|
- [embed-neighbor-chunks](./src/lib/embed-neighbor-chunks) - Expand retrieved chunks with neighboring context
|
|
139
|
+
- [progress](./src/lib/progress) - Progress event system: lifecycle tracking, batch progress, event emission
|
|
132
140
|
|
|
133
141
|
## Contributing
|
|
134
142
|
|
package/dist/index.browser.js
CHANGED
|
@@ -1,221 +1,225 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { cC as a } from "./shared-CX9VHytb.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-CX9VHytb.js";
|
|
3
3
|
a();
|
|
4
4
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
i as CAPABILITY_KEYS,
|
|
6
|
+
r as COMPLIANCE,
|
|
7
7
|
c as CONTEXT_KINDS,
|
|
8
8
|
n as COST_POSTURE,
|
|
9
|
-
o as
|
|
10
|
-
l as
|
|
11
|
-
b as
|
|
12
|
-
p as
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
y as
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
w as
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
Q as
|
|
47
|
-
Y as
|
|
48
|
-
j as
|
|
49
|
-
K as
|
|
50
|
-
J as
|
|
51
|
-
X as
|
|
52
|
-
H as
|
|
53
|
-
Z as
|
|
54
|
-
$ as
|
|
55
|
-
aa as
|
|
56
|
-
sa as
|
|
57
|
-
ea as
|
|
58
|
-
ta as
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
ca as
|
|
62
|
-
na as
|
|
63
|
-
oa as
|
|
64
|
-
la as
|
|
65
|
-
ba as
|
|
66
|
-
pa as
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
ya as
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
wa as
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
Qa as
|
|
101
|
-
Ya as
|
|
102
|
-
ja as
|
|
103
|
-
Ka as
|
|
104
|
-
Ja as
|
|
105
|
-
Xa as
|
|
106
|
-
Ha as
|
|
107
|
-
Za as
|
|
108
|
-
$a as
|
|
109
|
-
as as
|
|
110
|
-
ss as
|
|
111
|
-
es as
|
|
112
|
-
ts as
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
cs as
|
|
116
|
-
ns as
|
|
117
|
-
os as
|
|
118
|
-
ls as
|
|
119
|
-
bs as
|
|
120
|
-
ps as
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
ys as
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
Rs as parallelMap,
|
|
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,
|
|
135
134
|
Es as parseLLMList,
|
|
136
135
|
Fs as parseRDFLiteral,
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
136
|
+
Ms as parseRelations,
|
|
137
|
+
Bs as people,
|
|
138
|
+
Ns as phailForge,
|
|
139
|
+
Ps as pick,
|
|
140
|
+
xs as pipe,
|
|
141
|
+
As as popReference,
|
|
143
142
|
Os as probeScan,
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
143
|
+
Ls as promptCache,
|
|
144
|
+
ks as promptPiece,
|
|
145
|
+
ws as prompts,
|
|
147
146
|
Ds as questions,
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
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,
|
|
168
167
|
ie as schemas,
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
ue as
|
|
177
|
-
|
|
178
|
-
ge as
|
|
179
|
-
|
|
180
|
-
Se as
|
|
181
|
-
|
|
182
|
-
ye as setEmbedEnabled,
|
|
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,
|
|
183
181
|
Te as setInterval,
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
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,
|
|
192
190
|
Me as stripResponse,
|
|
193
|
-
|
|
191
|
+
Be as suggestTargetingRules,
|
|
194
192
|
Ne as tagSpec,
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
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
|
|
221
225
|
};
|