@tangle-network/agent-knowledge 3.2.1 → 4.0.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/CHANGELOG.md +37 -0
- package/README.md +306 -40
- package/dist/benchmarks/index.d.ts +1 -2
- package/dist/benchmarks/index.js +1 -4
- package/dist/chunk-DW6APRTX.js +3292 -0
- package/dist/chunk-DW6APRTX.js.map +1 -0
- package/dist/chunk-UWOTQNBI.js +4740 -0
- package/dist/chunk-UWOTQNBI.js.map +1 -0
- package/dist/index-Bqg1mBPt.d.ts +822 -0
- package/dist/index.d.ts +3 -4
- package/dist/index.js +44 -8
- package/dist/index.js.map +1 -1
- package/dist/memory/index.d.ts +491 -4
- package/dist/memory/index.js +44 -3
- package/package.json +7 -5
- package/dist/chunk-RIHIYCX2.js +0 -1853
- package/dist/chunk-RIHIYCX2.js.map +0 -1
- package/dist/chunk-VN2OGUUP.js +0 -851
- package/dist/chunk-VN2OGUUP.js.map +0 -1
- package/dist/chunk-XVU5FFQA.js +0 -49
- package/dist/chunk-XVU5FFQA.js.map +0 -1
- package/dist/index-BHQk7jOT.d.ts +0 -429
- package/dist/types-BFRyr390.d.ts +0 -319
package/dist/types-BFRyr390.d.ts
DELETED
|
@@ -1,319 +0,0 @@
|
|
|
1
|
-
import { S as SourceRecord } from './types-6x0OpfW6.js';
|
|
2
|
-
import { OffPolicyTrajectory } from '@tangle-network/agent-eval/rl';
|
|
3
|
-
|
|
4
|
-
interface RetrievalHoldoutConfig {
|
|
5
|
-
/** Per-session probability that one eligible watchlist item is suppressed. 0 logs the full schema without ever dropping. */
|
|
6
|
-
epsilon: number;
|
|
7
|
-
/** Item ids eligible for suppression. Empty or absent means no item can ever be dropped. */
|
|
8
|
-
watchlist?: string[];
|
|
9
|
-
/** Ties every event to the exact epsilon/watchlist in force, for audit and replay. */
|
|
10
|
-
configVersion?: string;
|
|
11
|
-
/** Copied onto every event so multi-adapter logs stay attributable. */
|
|
12
|
-
adapterId?: string;
|
|
13
|
-
/** Corpus/store version stamp; an edited item under the same id is a different treatment. */
|
|
14
|
-
corpusVersion?: string;
|
|
15
|
-
/**
|
|
16
|
-
* Emit plaintext sessionId and scope on events. Default false: events carry only
|
|
17
|
-
* sessionIdHash/scopeHash, so PII-bearing identifiers (tenantId/userId/tags) never reach a
|
|
18
|
-
* consumer-controlled sink unless the consumer explicitly owns that decision. Note that
|
|
19
|
-
* replaying assignment draws from logs alone needs the plaintext sessionId, so
|
|
20
|
-
* privacy-default logs require the consumer's own sessionId mapping for replay audits.
|
|
21
|
-
*/
|
|
22
|
-
includePlaintextIdentifiers?: boolean;
|
|
23
|
-
/**
|
|
24
|
-
* Cap on tracked sessions per experiment config in the sticky wrapper's registry.
|
|
25
|
-
* Exists so tests can exercise eviction; production should keep the default (10,000).
|
|
26
|
-
*/
|
|
27
|
-
maxTrackedSessions?: number;
|
|
28
|
-
/**
|
|
29
|
-
* Uniform-[0,1) generator keyed by a string. Defaults to a sha256-derived deterministic
|
|
30
|
-
* generator so every assignment is replayable from the logged keys alone (design rule D5).
|
|
31
|
-
*/
|
|
32
|
-
rng?: (key: string) => number;
|
|
33
|
-
/** Receives one event per retrieval call, INCLUDING no-drop calls: control-arm membership is half the data. */
|
|
34
|
-
onEvent: (event: RetrievalHoldoutEvent) => void;
|
|
35
|
-
}
|
|
36
|
-
interface RetrievalHoldoutEligibleItem {
|
|
37
|
-
id: string;
|
|
38
|
-
/** 1-based position in the post-filter hit list. */
|
|
39
|
-
rank: number;
|
|
40
|
-
score?: number;
|
|
41
|
-
kind: string;
|
|
42
|
-
/** sha256(hit.text) prefix; effects are estimated per (id, contentHash) pair. */
|
|
43
|
-
contentHash: string;
|
|
44
|
-
}
|
|
45
|
-
interface RetrievalHoldoutEvent {
|
|
46
|
-
v: 1;
|
|
47
|
-
eventId: string;
|
|
48
|
-
ts: string;
|
|
49
|
-
adapterId?: string;
|
|
50
|
-
/** Plaintext session id — emitted ONLY when config.includePlaintextIdentifiers is true. */
|
|
51
|
-
sessionId?: string;
|
|
52
|
-
/** Consumer-supplied experiment/outcome join id (scope.tags.taskId); deliberately plaintext. */
|
|
53
|
-
taskId?: string;
|
|
54
|
-
/** 1-based call counter within the session; 0 when the call is outside session randomization. */
|
|
55
|
-
callIndex: number;
|
|
56
|
-
/**
|
|
57
|
-
* sha256(sessionId) prefix — the default privacy-preserving session join key AND the seed-key
|
|
58
|
-
* reference for the assignment draws (previously named rngKey; identical derivation, deduped).
|
|
59
|
-
*/
|
|
60
|
-
sessionIdHash?: string;
|
|
61
|
-
queryHash?: string;
|
|
62
|
-
/** Verbatim scope — emitted ONLY when config.includePlaintextIdentifiers is true (PII risk). */
|
|
63
|
-
scope?: AgentMemoryScope;
|
|
64
|
-
/** sha256 prefix of the canonical-JSON scope (keys sorted, undefined stripped). */
|
|
65
|
-
scopeHash?: string;
|
|
66
|
-
config: {
|
|
67
|
-
epsilon: number;
|
|
68
|
-
watchlist: string[];
|
|
69
|
-
configVersion?: string;
|
|
70
|
-
};
|
|
71
|
-
/**
|
|
72
|
-
* Value-hash of the experiment-defining knobs, sha256({epsilon, sorted watchlist}) prefix.
|
|
73
|
-
* The estimator groups events by it; the sticky-session registry is keyed by it.
|
|
74
|
-
*/
|
|
75
|
-
configHash: string;
|
|
76
|
-
/**
|
|
77
|
-
* False when no sessionId is available or the adapter answered without retrieval
|
|
78
|
-
* (see bypassReason), so the fraction-under-experiment denominator stays honest.
|
|
79
|
-
*/
|
|
80
|
-
holdoutEligible: boolean;
|
|
81
|
-
/** Present only on adapter paths that bypassed retrieval, where no suppression could apply. */
|
|
82
|
-
bypassReason?: RetrievalHoldoutBypassReason;
|
|
83
|
-
/** The full post-filter eligibility set E, logged on every call (control arm + interference probes). */
|
|
84
|
-
eligible: RetrievalHoldoutEligibleItem[];
|
|
85
|
-
/** Ids in watchlist ∩ E, in eligibility order. */
|
|
86
|
-
watchlistEligible: string[];
|
|
87
|
-
sessionHoldout: boolean;
|
|
88
|
-
/** The session's sticky drop target once drawn; distinguishes "target absent from E" from "not yet drawn". */
|
|
89
|
-
sessionTargetId: string | null;
|
|
90
|
-
/** The item suppressed in THIS call, or null. */
|
|
91
|
-
droppedId: string | null;
|
|
92
|
-
/** 1/|watchlist ∩ E| recorded at draw time; the exact inverse-propensity weight input. */
|
|
93
|
-
pickPropensity: number | null;
|
|
94
|
-
/** epsilon * pickPropensity, recorded at draw time so analysis never re-derives assignment probabilities. */
|
|
95
|
-
dropPropensity: number | null;
|
|
96
|
-
deliveredIds: string[];
|
|
97
|
-
corpusVersion?: string;
|
|
98
|
-
}
|
|
99
|
-
interface RetrievalHoldoutSessionState {
|
|
100
|
-
sessionId: string;
|
|
101
|
-
/** Calls observed so far in this session. */
|
|
102
|
-
callCount: number;
|
|
103
|
-
sessionHoldout: boolean;
|
|
104
|
-
/** Sticky drop target; drawn once at the first call whose eligibility set intersects the watchlist. */
|
|
105
|
-
targetId: string | null;
|
|
106
|
-
pickPropensity: number | null;
|
|
107
|
-
}
|
|
108
|
-
interface RetrievalHoldoutCallContext {
|
|
109
|
-
sessionId?: string;
|
|
110
|
-
taskId?: string;
|
|
111
|
-
/** Raw query; only its sha256 prefix is logged. */
|
|
112
|
-
query?: string;
|
|
113
|
-
scope?: AgentMemoryScope;
|
|
114
|
-
/** State returned by the previous call of this session; threading it is what makes suppression sticky. */
|
|
115
|
-
session?: RetrievalHoldoutSessionState;
|
|
116
|
-
}
|
|
117
|
-
interface RetrievalHoldoutResult {
|
|
118
|
-
delivered: AgentMemoryHit[];
|
|
119
|
-
event: RetrievalHoldoutEvent;
|
|
120
|
-
session?: RetrievalHoldoutSessionState;
|
|
121
|
-
}
|
|
122
|
-
/** Adapter context paths that answer without retrieval, so no holdout draw can happen. */
|
|
123
|
-
type RetrievalHoldoutBypassReason = 'short-term-context' | 'raw-string-context';
|
|
124
|
-
/**
|
|
125
|
-
* Deterministic uniform [0,1) for assignment draws. The sha256 key derivation is ours — it makes
|
|
126
|
-
* every draw replayable from the logged keys alone (design rule D5) — while the generator core is
|
|
127
|
-
* the substrate's `mulberry32` (@tangle-network/agent-eval statistics vocabulary), seeded with the
|
|
128
|
-
* top 32 bits of the digest, so the statistical machinery is reused rather than forked.
|
|
129
|
-
*/
|
|
130
|
-
declare function deterministicRng(key: string): number;
|
|
131
|
-
/**
|
|
132
|
-
* Value-hash of the knobs that DEFINE the experiment (epsilon + watchlist, order-independent).
|
|
133
|
-
* Everything else on the config (callbacks, attribution stamps, privacy flags) does not change
|
|
134
|
-
* which assignments are drawn, so it stays out of the hash.
|
|
135
|
-
*/
|
|
136
|
-
declare function retrievalHoldoutConfigHash(config: Pick<RetrievalHoldoutConfig, 'epsilon' | 'watchlist'>): string;
|
|
137
|
-
/**
|
|
138
|
-
* Pure per-call holdout: takes post-filter hits, returns delivered hits plus the log event
|
|
139
|
-
* and the next session state. Suppression only removes items (no backfill), and it happens
|
|
140
|
-
* before rendering so a drop session's context is byte-identical to a natural smaller retrieval.
|
|
141
|
-
*/
|
|
142
|
-
declare function applyRetrievalHoldout(hits: AgentMemoryHit[], config: RetrievalHoldoutConfig, ctx?: RetrievalHoldoutCallContext): RetrievalHoldoutResult;
|
|
143
|
-
/**
|
|
144
|
-
* Logs a holdout event for adapter context paths that answer WITHOUT going through the
|
|
145
|
-
* search→render seam (Neo4j short-term conversation context, raw-string getContext results),
|
|
146
|
-
* so a consumer with a holdout configured still sees every call and the fraction-under-experiment
|
|
147
|
-
* denominator stays honest instead of silently losing these calls. No suppression is applied:
|
|
148
|
-
* dropping is only meaningful for retrieved memory hits, never for conversation context.
|
|
149
|
-
*/
|
|
150
|
-
declare function emitRetrievalHoldoutBypass(hits: AgentMemoryHit[], config: RetrievalHoldoutConfig, ctx: Omit<RetrievalHoldoutCallContext, 'session'>, bypassReason: RetrievalHoldoutBypassReason): RetrievalHoldoutEvent;
|
|
151
|
-
/**
|
|
152
|
-
* Clears all sticky-session state. For test isolation and experiment-epoch boundaries;
|
|
153
|
-
* sessions in flight afterwards re-draw deterministically (same rng keys), so with the default
|
|
154
|
-
* rng a reset is invisible in the logs unless eligibility sets changed in between.
|
|
155
|
-
*/
|
|
156
|
-
declare function resetRetrievalHoldoutRegistry(): void;
|
|
157
|
-
/**
|
|
158
|
-
* Convenience wrapper that threads session state internally, keyed by the VALUE of the
|
|
159
|
-
* experiment-defining knobs (configHash = epsilon + sorted watchlist) plus sessionId, so a fresh
|
|
160
|
-
* config object per call — the natural pattern when options are built inline — keeps full
|
|
161
|
-
* stickiness. Distinct experiments never share session state; two config objects with the same
|
|
162
|
-
* epsilon/watchlist are the same experiment by definition.
|
|
163
|
-
*/
|
|
164
|
-
declare function applySessionStickyRetrievalHoldout(hits: AgentMemoryHit[], config: RetrievalHoldoutConfig, ctx?: Omit<RetrievalHoldoutCallContext, 'session'>): RetrievalHoldoutResult;
|
|
165
|
-
/** Aggregated view of one session's holdout exposure — the randomization unit of this design. */
|
|
166
|
-
interface RetrievalHoldoutSessionSummary {
|
|
167
|
-
/** `${configHash}:${sessionIdHash}` — the trajectory's runId. */
|
|
168
|
-
runId: string;
|
|
169
|
-
configHash: string;
|
|
170
|
-
sessionIdHash: string;
|
|
171
|
-
sessionHoldout: boolean;
|
|
172
|
-
sessionTargetId: string | null;
|
|
173
|
-
/** Item actually suppressed in this session (equals sessionTargetId when a drop occurred). */
|
|
174
|
-
droppedId: string | null;
|
|
175
|
-
/** |watchlist ∩ E| at the session's first intersecting randomized call; 0 when never intersecting. */
|
|
176
|
-
firstCandidateCount: number;
|
|
177
|
-
/** Randomized retrieval calls observed for this session. */
|
|
178
|
-
callCount: number;
|
|
179
|
-
/** Adapter bypass calls observed for this session (logged, never randomized). */
|
|
180
|
-
bypassCallCount: number;
|
|
181
|
-
/** Session-level probability of the OBSERVED assignment under the behavior policy. */
|
|
182
|
-
behaviorProb: number;
|
|
183
|
-
/** True when the session's events disagree on arm or target (e.g. registry eviction re-draw). */
|
|
184
|
-
mixedExposure: boolean;
|
|
185
|
-
/** Present only on sessions surfaced in `excluded` rather than converted. */
|
|
186
|
-
exclusionReason?: 'mixed-exposure' | 'no-randomized-calls';
|
|
187
|
-
}
|
|
188
|
-
interface RetrievalHoldoutOffPolicyOptions {
|
|
189
|
-
/**
|
|
190
|
-
* Realized outcome PER SESSION, keyed by sessionIdHash — the session is the randomization
|
|
191
|
-
* unit, so rewards are per session, never per call. A missing entry for an included session
|
|
192
|
-
* throws: silently dropping unscored sessions would corrupt the estimator's denominator, so
|
|
193
|
-
* filter events to scored sessions upstream instead.
|
|
194
|
-
*/
|
|
195
|
-
rewards: Record<string, number>;
|
|
196
|
-
/**
|
|
197
|
-
* Target-policy probability of the session's observed assignment. Default models the
|
|
198
|
-
* always-deliver-in-full policy: 1 for full-delivery sessions, 0 for drop sessions.
|
|
199
|
-
*/
|
|
200
|
-
targetProb?: (session: RetrievalHoldoutSessionSummary) => number;
|
|
201
|
-
/** Per-session reward-model prediction enabling `doublyRobust`; when absent, qHat is null. */
|
|
202
|
-
qHat?: (session: RetrievalHoldoutSessionSummary) => number | null;
|
|
203
|
-
}
|
|
204
|
-
interface RetrievalHoldoutOffPolicyResult {
|
|
205
|
-
/** One trajectory per (configHash, sessionIdHash) — never per call. */
|
|
206
|
-
trajectories: OffPolicyTrajectory[];
|
|
207
|
-
/** 1:1 with `trajectories` (same order): the diagnostic view of each converted session. */
|
|
208
|
-
sessions: RetrievalHoldoutSessionSummary[];
|
|
209
|
-
/** Sessions surfaced but NOT converted (mixed exposure, bypass-only) — counted, never hidden. */
|
|
210
|
-
excluded: RetrievalHoldoutSessionSummary[];
|
|
211
|
-
/** Events with no sessionIdHash: outside session randomization, cannot join a reward. */
|
|
212
|
-
unattributableEvents: number;
|
|
213
|
-
}
|
|
214
|
-
/**
|
|
215
|
-
* Maps holdout logs onto agent-eval's `OffPolicyTrajectory`, ONE TRAJECTORY PER SESSION, so
|
|
216
|
-
* EXP-007's analysis consumes the substrate's `inverseProbabilityWeighting` /
|
|
217
|
-
* `selfNormalizedImportanceWeighting` / `doublyRobust` estimators directly. This matches the
|
|
218
|
-
* PREREG estimator (session-sticky self-normalized IPW): the design randomizes per SESSION —
|
|
219
|
-
* the arm coin is flipped once (P(holdout) = epsilon) and the sticky target is drawn once,
|
|
220
|
-
* uniformly over watchlist ∩ E at the session's first intersecting call.
|
|
221
|
-
*
|
|
222
|
-
* Session-level action space and behavior probabilities (they sum to 1 by construction):
|
|
223
|
-
* - full delivery (control arm observed): `1 − epsilon`;
|
|
224
|
-
* - drop candidate i of k = |watchlist ∩ E_first|: `epsilon / k` each (the draw event's logged
|
|
225
|
-
* `dropPropensity`);
|
|
226
|
-
* - sessions whose eligibility sets never intersect the watchlist: probability 1 — full
|
|
227
|
-
* delivery was certain in either arm.
|
|
228
|
-
*
|
|
229
|
-
* Per-call events are repeated observations WITHIN one session-level randomization; per-call
|
|
230
|
-
* IPW is statistically invalid for this design (per-call "propensities" imply an action
|
|
231
|
-
* distribution summing to more than 1 and bias IPS downward). Calls where the sticky target is
|
|
232
|
-
* absent from E, and adapter bypass calls, fold into the session summary (callCount /
|
|
233
|
-
* bypassCallCount) instead of generating independent propensities.
|
|
234
|
-
*
|
|
235
|
-
* Join contract: `rewards` is keyed by `sessionIdHash` (sha256(sessionId) first 16 hex — compute
|
|
236
|
-
* the same prefix over the outcome table's session ids, or log with
|
|
237
|
-
* `includePlaintextIdentifiers: true` and join on raw ids upstream). Events are grouped per
|
|
238
|
-
* (configHash, sessionIdHash) so different experiment configs are never pooled. Mixed-exposure
|
|
239
|
-
* sessions (arm or target disagreement, e.g. after registry eviction) are excluded from the
|
|
240
|
-
* trajectories and surfaced in `excluded` for the analysis to count.
|
|
241
|
-
* Pre-registration for EXP-007 stays in the research repo by design; the manifest vocabulary for
|
|
242
|
-
* it is agent-eval's `HypothesisManifest` / `signManifest` / `evaluateHypothesis` exports.
|
|
243
|
-
*/
|
|
244
|
-
declare function toOffPolicyTrajectory(events: RetrievalHoldoutEvent[], options: RetrievalHoldoutOffPolicyOptions): RetrievalHoldoutOffPolicyResult;
|
|
245
|
-
|
|
246
|
-
type AgentMemoryKind = 'message' | 'entity' | 'fact' | 'preference' | 'observation' | 'reasoning-trace';
|
|
247
|
-
interface AgentMemoryScope {
|
|
248
|
-
tenantId?: string;
|
|
249
|
-
userId?: string;
|
|
250
|
-
sessionId?: string;
|
|
251
|
-
namespace?: string;
|
|
252
|
-
tags?: Record<string, string>;
|
|
253
|
-
}
|
|
254
|
-
interface AgentMemoryHit {
|
|
255
|
-
id: string;
|
|
256
|
-
uri: string;
|
|
257
|
-
kind: AgentMemoryKind;
|
|
258
|
-
text: string;
|
|
259
|
-
title?: string;
|
|
260
|
-
score?: number;
|
|
261
|
-
normalizedScore?: number;
|
|
262
|
-
confidence?: number;
|
|
263
|
-
createdAt?: string;
|
|
264
|
-
validUntil?: string;
|
|
265
|
-
lastVerifiedAt?: string;
|
|
266
|
-
metadata?: Record<string, unknown>;
|
|
267
|
-
}
|
|
268
|
-
interface AgentMemoryContext {
|
|
269
|
-
query: string;
|
|
270
|
-
text: string;
|
|
271
|
-
hits: AgentMemoryHit[];
|
|
272
|
-
sourceRecords: SourceRecord[];
|
|
273
|
-
metadata?: Record<string, unknown>;
|
|
274
|
-
}
|
|
275
|
-
interface AgentMemorySearchOptions {
|
|
276
|
-
scope?: AgentMemoryScope;
|
|
277
|
-
limit?: number;
|
|
278
|
-
minScore?: number;
|
|
279
|
-
kinds?: AgentMemoryKind[];
|
|
280
|
-
metadata?: Record<string, unknown>;
|
|
281
|
-
/**
|
|
282
|
-
* Opt-in randomized retrieval holdout (epsilon-dropout) for treatment-effect logging.
|
|
283
|
-
* Absent by default; when absent, retrieval behavior is unchanged. See ./holdout.
|
|
284
|
-
*/
|
|
285
|
-
holdout?: RetrievalHoldoutConfig;
|
|
286
|
-
}
|
|
287
|
-
interface AgentMemoryWriteInput {
|
|
288
|
-
kind: AgentMemoryKind;
|
|
289
|
-
text: string;
|
|
290
|
-
id?: string;
|
|
291
|
-
title?: string;
|
|
292
|
-
role?: 'system' | 'user' | 'assistant' | 'tool';
|
|
293
|
-
entityName?: string;
|
|
294
|
-
entityType?: string;
|
|
295
|
-
category?: string;
|
|
296
|
-
predicate?: string;
|
|
297
|
-
subject?: string;
|
|
298
|
-
object?: string;
|
|
299
|
-
confidence?: number;
|
|
300
|
-
scope?: AgentMemoryScope;
|
|
301
|
-
metadata?: Record<string, unknown>;
|
|
302
|
-
}
|
|
303
|
-
interface AgentMemoryWriteResult {
|
|
304
|
-
accepted: boolean;
|
|
305
|
-
id: string;
|
|
306
|
-
uri: string;
|
|
307
|
-
kind: AgentMemoryKind;
|
|
308
|
-
sourceRecord?: SourceRecord;
|
|
309
|
-
metadata?: Record<string, unknown>;
|
|
310
|
-
}
|
|
311
|
-
interface AgentMemoryAdapter {
|
|
312
|
-
readonly id: string;
|
|
313
|
-
search(query: string, options?: AgentMemorySearchOptions): Promise<AgentMemoryHit[]>;
|
|
314
|
-
getContext(query: string, options?: AgentMemorySearchOptions): Promise<AgentMemoryContext>;
|
|
315
|
-
write(input: AgentMemoryWriteInput): Promise<AgentMemoryWriteResult>;
|
|
316
|
-
flush?(): Promise<void>;
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
export { type AgentMemoryAdapter as A, type RetrievalHoldoutBypassReason as R, type AgentMemoryScope as a, type AgentMemoryContext as b, type AgentMemoryHit as c, type AgentMemoryKind as d, type AgentMemorySearchOptions as e, type AgentMemoryWriteInput as f, type AgentMemoryWriteResult as g, type RetrievalHoldoutCallContext as h, type RetrievalHoldoutConfig as i, type RetrievalHoldoutEligibleItem as j, type RetrievalHoldoutEvent as k, type RetrievalHoldoutOffPolicyOptions as l, type RetrievalHoldoutOffPolicyResult as m, type RetrievalHoldoutResult as n, type RetrievalHoldoutSessionState as o, type RetrievalHoldoutSessionSummary as p, applyRetrievalHoldout as q, applySessionStickyRetrievalHoldout as r, deterministicRng as s, emitRetrievalHoldoutBypass as t, resetRetrievalHoldoutRegistry as u, retrievalHoldoutConfigHash as v, toOffPolicyTrajectory as w };
|