@fortemi/core 2026.7.2 → 2026.7.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.
@@ -1,464 +1 @@
1
- type AiwgFortemiKnownRecordType = 'crm.contact' | 'crm.organization' | 'crm.event' | 'crm.interaction' | 'aiwg.artifact' | 'docs.page';
2
- type AiwgFortemiRecordType = AiwgFortemiKnownRecordType | `aiwg.${string}` | `research.${string}` | `docs.${string}` | string;
3
- type AiwgFortemiRecordSchemaVersion = 'aiwg.fortemi.index.record.v1' | 'aiwg.fortemi.index.record.v2';
4
- type AiwgFortemiIndexExportSchemaVersion = 'aiwg.fortemi.index.export.v1' | 'aiwg.fortemi.index.export.v2';
5
- type AiwgPrivacyClassification = 'private' | 'sanitized' | 'public';
6
- type AiwgProvenanceConfidence = 'source' | 'candidate' | 'reviewed' | 'rejected';
7
- type AiwgReviewAction = 'accept' | 'reject' | 'defer';
8
- type AiwgFortemiRelationshipDirection = 'upstream' | 'downstream' | 'related';
9
- interface AiwgFortemiRecordSource {
10
- path: string;
11
- repo_relative_path: string;
12
- locator: string;
13
- origin?: string;
14
- generated?: boolean;
15
- checksum?: string;
16
- updated_at?: string;
17
- }
18
- interface AiwgFortemiRelationship {
19
- type: string;
20
- target_id: string;
21
- source_path?: string;
22
- target_path?: string;
23
- direction?: AiwgFortemiRelationshipDirection;
24
- label?: string;
25
- confidence?: number;
26
- privacy?: AiwgPrivacyClassification;
27
- metadata?: Record<string, unknown>;
28
- }
29
- interface AiwgFortemiProvenance {
30
- field: string;
31
- source: string;
32
- path: string;
33
- confidence: AiwgProvenanceConfidence;
34
- privacy: AiwgPrivacyClassification;
35
- }
36
- type AiwgFortemiSkosRelationType = 'broader' | 'narrower' | 'related' | string;
37
- interface AiwgFortemiSkosConcept {
38
- id: string;
39
- prefLabel: string;
40
- definition?: string;
41
- scheme?: string;
42
- notation?: string;
43
- uri?: string;
44
- altLabels?: string[];
45
- metadata?: Record<string, unknown>;
46
- }
47
- interface AiwgFortemiSkosRelation {
48
- type: AiwgFortemiSkosRelationType;
49
- source_id: string;
50
- target_id: string;
51
- source_path?: string;
52
- metadata?: Record<string, unknown>;
53
- }
54
- interface AiwgFortemiProvenanceEvent {
55
- id?: string;
56
- activity: string;
57
- agent?: string;
58
- started_at?: string;
59
- ended_at?: string;
60
- source?: string;
61
- path?: string;
62
- confidence?: AiwgProvenanceConfidence;
63
- privacy?: AiwgPrivacyClassification;
64
- attributes?: Record<string, unknown>;
65
- }
66
- interface AiwgFortemiSearchProjection {
67
- title?: string;
68
- name?: string;
69
- summary?: string;
70
- body?: string;
71
- triggers?: string[];
72
- aliases?: string[];
73
- capability?: string;
74
- tags?: string[];
75
- phase?: string;
76
- type?: string;
77
- frontmatter?: Record<string, unknown>;
78
- }
79
- interface AiwgFortemiChunk {
80
- id?: string;
81
- text?: string;
82
- body?: string;
83
- summary?: string;
84
- source_path?: string;
85
- metadata?: Record<string, unknown>;
86
- }
87
- interface AiwgFortemiRecordEmbedding {
88
- id?: string;
89
- embedding?: number[];
90
- vector?: number[];
91
- model?: string;
92
- granularity?: string;
93
- input_hash?: string;
94
- source_path?: string;
95
- metadata?: Record<string, unknown>;
96
- }
97
- interface AiwgFortemiAttachmentReference {
98
- id: string;
99
- path: string;
100
- mime: string | null;
101
- checksum: string;
102
- bytes: number;
103
- }
104
- interface AiwgFortemiBinarySource {
105
- extracted_text: string;
106
- attachment: AiwgFortemiAttachmentReference;
107
- }
108
- interface AiwgFortemiRecord {
109
- schema_version: AiwgFortemiRecordSchemaVersion;
110
- id: string;
111
- type: AiwgFortemiRecordType;
112
- source: AiwgFortemiRecordSource;
113
- title?: string;
114
- text?: string;
115
- facets: Record<string, string[]>;
116
- tags: string[];
117
- concepts: string[];
118
- relationships: AiwgFortemiRelationship[];
119
- provenance: AiwgFortemiProvenance[];
120
- search?: AiwgFortemiSearchProjection;
121
- chunks?: AiwgFortemiChunk[];
122
- binary_sources?: AiwgFortemiBinarySource[];
123
- embeddings?: AiwgFortemiRecordEmbedding[];
124
- compatibility?: Record<string, unknown>;
125
- /** Optional rich SKOS metadata for static consumers that need labels/definitions without opening a shard. */
126
- skos_concepts?: AiwgFortemiSkosConcept[];
127
- /** Optional SKOS relationship edges among concepts referenced by this record. */
128
- skos_relations?: AiwgFortemiSkosRelation[];
129
- /** Optional W3C PROV-style activity chain for this record. */
130
- provenance_events?: AiwgFortemiProvenanceEvent[];
131
- privacy: {
132
- classification: AiwgPrivacyClassification;
133
- pii: boolean;
134
- locality?: string;
135
- };
136
- updated_at: string;
137
- }
138
- interface AiwgFortemiIndexExport {
139
- schema_version: AiwgFortemiIndexExportSchemaVersion;
140
- generated_at: string;
141
- source: {
142
- repo: string;
143
- privacy: AiwgPrivacyClassification;
144
- origin?: string;
145
- generated?: boolean;
146
- checksum?: string;
147
- updated_at?: string;
148
- };
149
- items: AiwgFortemiRecord[];
150
- compatibility?: Record<string, unknown>;
151
- }
152
- interface AiwgFortemiChunkPartRef {
153
- href: string;
154
- offset: number;
155
- count: number;
156
- }
157
- declare const AIWG_SCAN_REQUIRED_FIELDS: Array<keyof AiwgFortemiRecord>;
158
- type AiwgFortemiProjectedRecord = Pick<AiwgFortemiRecord, 'schema_version' | 'id' | 'type' | 'title' | 'text' | 'facets' | 'tags' | 'concepts' | 'privacy'> & Partial<AiwgFortemiRecord>;
159
- type AiwgDetailIdEncoding = 'uri' | 'base64url';
160
- interface AiwgFortemiChunkDetailRef {
161
- href: string;
162
- encoding?: AiwgDetailIdEncoding;
163
- }
164
- interface AiwgFortemiChunkManifest {
165
- schema_version: 'aiwg.fortemi.index.chunk-manifest.v1';
166
- generated_at: string;
167
- source: AiwgFortemiIndexExport['source'];
168
- total: number;
169
- part_size: number;
170
- facets?: Record<string, Record<string, number>>;
171
- projection?: Array<keyof AiwgFortemiRecord>;
172
- detail?: AiwgFortemiChunkDetailRef;
173
- parts: AiwgFortemiChunkPartRef[];
174
- }
175
- interface AiwgFortemiChunkPart {
176
- schema_version: 'aiwg.fortemi.index.chunk.v1';
177
- manifest_schema_version: 'aiwg.fortemi.index.chunk-manifest.v1';
178
- offset: number;
179
- items: AiwgFortemiRecord[];
180
- }
181
- interface AiwgIndexValidationResult {
182
- valid: boolean;
183
- errors: string[];
184
- counts: Partial<Record<string, number>>;
185
- }
186
- interface AiwgChunkedIndexValidationResult {
187
- valid: boolean;
188
- errors: string[];
189
- }
190
- interface AiwgIndexQueryOptions {
191
- types?: AiwgFortemiRecordType[];
192
- facets?: Record<string, string[]>;
193
- tags?: string[];
194
- concepts?: string[];
195
- privacy?: AiwgPrivacyClassification[];
196
- relationshipTargetId?: string;
197
- limit?: number;
198
- offset?: number;
199
- rank?: boolean;
200
- snippets?: boolean;
201
- snippetLength?: number;
202
- weights?: Partial<AiwgIndexQueryWeights>;
203
- includeMatches?: boolean;
204
- searchProfile?: 'default' | 'aiwg-discovery';
205
- }
206
- interface AiwgIndexQueryWeights {
207
- title: number;
208
- text: number;
209
- tag: number;
210
- concept: number;
211
- facet: number;
212
- id: number;
213
- source: number;
214
- }
215
- interface AiwgIndexQueryMatch {
216
- field: 'title' | 'text' | 'tag' | 'concept' | 'facet' | 'id' | 'source';
217
- value: string;
218
- score?: number;
219
- reason?: string;
220
- }
221
- interface AiwgIndexQueryRankedItem {
222
- item: AiwgFortemiRecord;
223
- rank: number;
224
- snippet?: string;
225
- matches?: AiwgIndexQueryMatch[];
226
- }
227
- interface AiwgIndexQueryResult {
228
- items: AiwgFortemiRecord[];
229
- total: number;
230
- facets: Record<string, Record<string, number>>;
231
- rankedItems?: AiwgIndexQueryRankedItem[];
232
- }
233
- type AiwgChunkedIndexLoader = (part: AiwgFortemiChunkPartRef, manifest: AiwgFortemiChunkManifest) => Promise<unknown>;
234
- type AiwgChunkedIndexDetailLoader = (id: string, manifest: AiwgFortemiChunkManifest) => Promise<unknown>;
235
- interface AiwgChunkedIndexLoadOptions {
236
- maxCachedParts?: number;
237
- detailLoader?: AiwgChunkedIndexDetailLoader;
238
- maxCachedDetails?: number;
239
- maxCachedMatches?: number;
240
- }
241
- type AiwgChunkedIndexProgressPhase = 'part' | 'query';
242
- interface AiwgChunkedIndexProgress {
243
- phase: AiwgChunkedIndexProgressPhase;
244
- done: number;
245
- total: number;
246
- href?: string;
247
- }
248
- interface AiwgChunkedIndexQueryOptions extends AiwgIndexQueryOptions {
249
- onProgress?: (progress: AiwgChunkedIndexProgress) => void;
250
- }
251
- interface AiwgChunkedIndexQueryResult extends AiwgIndexQueryResult {
252
- manifestTotal: number;
253
- scannedParts: number;
254
- fetchedParts: number;
255
- complete: boolean;
256
- }
257
- interface AiwgReviewDecision {
258
- item_id: string;
259
- action: AiwgReviewAction;
260
- reason?: string;
261
- updated_at: string;
262
- }
263
- interface AiwgReviewDecisionExport {
264
- schema_version: 'aiwg.fortemi.review-decisions.v1';
265
- generated_at: string;
266
- source_export_schema_version: string;
267
- decisions: AiwgReviewDecision[];
268
- }
269
- interface AiwgIndexGraphOptions {
270
- communityFacet?: string;
271
- communityTagPrefix?: string;
272
- relationshipWeights?: Record<string, number>;
273
- includeDanglingRelationships?: boolean;
274
- }
275
- type AiwgRelationshipDirection = 'in' | 'out' | 'both';
276
- type AiwgRelationshipSetOperation = 'intersection' | 'union' | 'difference';
277
- interface AiwgRelationshipTraversalOptions {
278
- direction?: AiwgRelationshipDirection;
279
- relationshipType?: string;
280
- relationshipDirection?: AiwgFortemiRelationshipDirection;
281
- limit?: number;
282
- }
283
- interface AiwgRelationshipQueryOptions extends AiwgRelationshipTraversalOptions {
284
- sourceId?: string;
285
- targetId?: string;
286
- type?: string;
287
- }
288
- interface AiwgRelationshipEdgeSummary {
289
- source_id: string;
290
- target_id: string;
291
- type: string;
292
- source_path?: string;
293
- target_path?: string;
294
- direction?: AiwgFortemiRelationshipDirection;
295
- }
296
- interface AiwgRelationshipNodeSummary {
297
- id: string;
298
- type: AiwgFortemiRecordType;
299
- title: string;
300
- }
301
- interface AiwgRelationshipTraversalResult {
302
- nodes: AiwgRelationshipNodeSummary[];
303
- edges: AiwgRelationshipEdgeSummary[];
304
- complete: boolean;
305
- scannedParts?: number;
306
- fetchedParts?: number;
307
- }
308
- interface AiwgRelationshipSetOptions extends AiwgRelationshipTraversalOptions {
309
- op: AiwgRelationshipSetOperation;
310
- a: string;
311
- b: string;
312
- }
313
- interface AiwgRelationshipSetResult {
314
- ids: string[];
315
- op: AiwgRelationshipSetOperation;
316
- }
317
- interface AiwgStaticEmbeddingRecord {
318
- record_id: string;
319
- embedding: number[];
320
- embedding_id?: string;
321
- granularity?: string;
322
- input_hash: string;
323
- source_path?: string;
324
- }
325
- interface AiwgStaticEmbeddingSet {
326
- schema_version: 'aiwg.fortemi.embedding.set.v1';
327
- id: string;
328
- model: string;
329
- dimensions: number;
330
- generated_at: string;
331
- granularity: 'title-summary' | 'body' | 'chunked-body' | string;
332
- metric?: 'cosine' | 'dot' | 'euclidean';
333
- input_hash_algorithm?: string;
334
- embeddings: AiwgStaticEmbeddingRecord[];
335
- }
336
- interface AiwgHeadlessEmbeddingBackend {
337
- model: string;
338
- dimensions: number;
339
- embed(input: string, record: AiwgFortemiRecord): number[] | Promise<number[]>;
340
- }
341
- interface BuildAiwgStaticEmbeddingSetOptions {
342
- id: string;
343
- backend: AiwgHeadlessEmbeddingBackend;
344
- records?: AiwgFortemiRecord[];
345
- generatedAt?: string | Date;
346
- granularity?: AiwgStaticEmbeddingSet['granularity'];
347
- metric?: AiwgStaticEmbeddingSet['metric'];
348
- textForRecord?: (record: AiwgFortemiRecord) => string;
349
- }
350
- interface AiwgStaticSemanticQueryOptions {
351
- limit?: number;
352
- offset?: number;
353
- minScore?: number;
354
- }
355
- interface AiwgStaticSemanticResult {
356
- item: AiwgFortemiRecord;
357
- score: number;
358
- embedding?: AiwgStaticEmbeddingRecord;
359
- }
360
- interface AiwgStaticHybridQueryOptions extends AiwgStaticSemanticQueryOptions, AiwgIndexQueryOptions {
361
- lexicalWeight?: number;
362
- semanticWeight?: number;
363
- }
364
- interface AiwgStaticDuplicatePair {
365
- left: AiwgFortemiRecord;
366
- right: AiwgFortemiRecord;
367
- score: number;
368
- }
369
- interface AiwgReviewInput {
370
- item_id: string;
371
- action: AiwgReviewAction;
372
- reason?: string;
373
- }
374
- interface AiwgIndexControllerSnapshot {
375
- index: AiwgFortemiIndexExport | null;
376
- chunked: {
377
- manifest: AiwgFortemiChunkManifest;
378
- cachedParts: number;
379
- maxCachedParts: number;
380
- } | null;
381
- data: AiwgIndexQueryResult | null;
382
- error: Error | null;
383
- reviewDecisions: AiwgReviewDecision[];
384
- }
385
- type AiwgIndexControllerListener = (snapshot: AiwgIndexControllerSnapshot) => void;
386
- interface AiwgIndexController {
387
- loadIndex(value: unknown): AiwgFortemiIndexExport;
388
- loadChunkedIndex(manifest: unknown, loader: AiwgChunkedIndexLoader, options?: AiwgChunkedIndexLoadOptions): AiwgFortemiChunkManifest;
389
- getIndex(): AiwgFortemiIndexExport | null;
390
- getChunkedManifest(): AiwgFortemiChunkManifest | null;
391
- getSnapshot(): AiwgIndexControllerSnapshot;
392
- query(query?: string, options?: AiwgIndexQueryOptions): AiwgIndexQueryResult;
393
- queryChunked(query?: string, options?: AiwgChunkedIndexQueryOptions): Promise<AiwgChunkedIndexQueryResult>;
394
- getRecord(id: string): Promise<AiwgFortemiRecord>;
395
- neighbors(id: string, options?: AiwgRelationshipTraversalOptions): Promise<AiwgRelationshipTraversalResult>;
396
- relationshipQuery(options?: AiwgRelationshipQueryOptions): Promise<AiwgRelationshipTraversalResult>;
397
- relationshipSet(options: AiwgRelationshipSetOptions): Promise<AiwgRelationshipSetResult>;
398
- clearChunkCache(): void;
399
- toCommunityGraph(options?: AiwgIndexGraphOptions): ReturnType<typeof aiwgFortemiIndexToCommunityGraph>;
400
- toCommunityGraphChunked(options?: AiwgIndexGraphOptions & {
401
- onProgress?: (progress: AiwgChunkedIndexProgress) => void;
402
- }): Promise<ReturnType<typeof aiwgFortemiIndexToCommunityGraph>>;
403
- setReviewDecision(input: AiwgReviewInput): AiwgReviewDecision;
404
- clearReviewDecision(itemId: string): void;
405
- createReviewDecisionExport(generatedAt?: string): AiwgReviewDecisionExport;
406
- subscribe(listener: AiwgIndexControllerListener): () => void;
407
- }
408
- declare function validateAiwgFortemiIndexExport(value: unknown): AiwgIndexValidationResult;
409
- declare function assertAiwgFortemiIndexExport(value: unknown): AiwgFortemiIndexExport;
410
- declare function validateAiwgFortemiChunkManifest(value: unknown): AiwgChunkedIndexValidationResult;
411
- declare function assertAiwgFortemiChunkManifest(value: unknown): AiwgFortemiChunkManifest;
412
- declare function validateAiwgFortemiChunkPart(value: unknown, partRef?: AiwgFortemiChunkPartRef, manifest?: AiwgFortemiChunkManifest): AiwgChunkedIndexValidationResult;
413
- declare function assertAiwgFortemiChunkPart(value: unknown, partRef?: AiwgFortemiChunkPartRef, manifest?: AiwgFortemiChunkManifest): AiwgFortemiChunkPart;
414
- declare function createAiwgFetchChunkLoader(baseUrl?: string | URL): AiwgChunkedIndexLoader;
415
- declare function encodeAiwgDetailId(id: string, encoding?: AiwgDetailIdEncoding): string;
416
- declare function aiwgDetailHrefForId(detail: AiwgFortemiChunkDetailRef, id: string): string;
417
- declare function createAiwgFetchDetailLoader(baseUrl?: string | URL): AiwgChunkedIndexDetailLoader;
418
- declare function getAiwgFortemiFacets(items: AiwgFortemiRecord[]): Record<string, Record<string, number>>;
419
- declare function buildAiwgStaticEmbeddingSet(index: AiwgFortemiIndexExport, options: BuildAiwgStaticEmbeddingSetOptions): Promise<AiwgStaticEmbeddingSet>;
420
- interface AiwgChunkedIndexBuildOptions {
421
- partSize?: number;
422
- projection?: Array<keyof AiwgFortemiRecord>;
423
- detailHref?: string;
424
- idEncoding?: AiwgDetailIdEncoding;
425
- generatedAt?: string;
426
- }
427
- interface AiwgChunkedIndexBuildResult {
428
- manifest: AiwgFortemiChunkManifest;
429
- parts: Array<{
430
- href: string;
431
- part: AiwgFortemiChunkPart;
432
- }>;
433
- details: Array<{
434
- id: string;
435
- href: string;
436
- record: AiwgFortemiRecord;
437
- }>;
438
- }
439
- declare function buildAiwgChunkedIndex(index: AiwgFortemiIndexExport, options?: AiwgChunkedIndexBuildOptions): AiwgChunkedIndexBuildResult;
440
- declare function queryAiwgFortemiIndex(index: AiwgFortemiIndexExport, query?: string, options?: AiwgIndexQueryOptions): AiwgIndexQueryResult;
441
- declare function validateAiwgStaticEmbeddingSet(value: unknown): AiwgChunkedIndexValidationResult;
442
- declare function assertAiwgStaticEmbeddingSet(value: unknown): AiwgStaticEmbeddingSet;
443
- declare function queryAiwgSemanticIndex(index: AiwgFortemiIndexExport, embeddingSet: AiwgStaticEmbeddingSet, queryEmbedding: number[], options?: AiwgStaticSemanticQueryOptions): AiwgStaticSemanticResult[];
444
- declare function queryAiwgHybridIndex(index: AiwgFortemiIndexExport, embeddingSet: AiwgStaticEmbeddingSet, query: string, queryEmbedding: number[], options?: AiwgStaticHybridQueryOptions): AiwgStaticSemanticResult[];
445
- declare function findAiwgStaticDuplicatePairs(index: AiwgFortemiIndexExport, embeddingSet: AiwgStaticEmbeddingSet, threshold?: number): AiwgStaticDuplicatePair[];
446
- declare function createAiwgReviewDecisionExport(source: Pick<AiwgFortemiIndexExport, 'schema_version'>, decisions: AiwgReviewDecision[], generatedAt?: string): AiwgReviewDecisionExport;
447
- declare function createAiwgIndexController(initialIndex?: AiwgFortemiIndexExport): AiwgIndexController;
448
- declare function aiwgFortemiIndexToCommunityGraph(index: AiwgFortemiIndexExport, options?: AiwgIndexGraphOptions): {
449
- nodes: {
450
- id: string;
451
- }[];
452
- edges: {
453
- source: string;
454
- target: string;
455
- kind: string;
456
- weight: number;
457
- }[];
458
- communities: {
459
- id: string;
460
- nodes: string[];
461
- }[];
462
- };
463
-
464
- export { AIWG_SCAN_REQUIRED_FIELDS, type AiwgChunkedIndexBuildOptions, type AiwgChunkedIndexBuildResult, type AiwgChunkedIndexDetailLoader, type AiwgChunkedIndexLoadOptions, type AiwgChunkedIndexLoader, type AiwgChunkedIndexProgress, type AiwgChunkedIndexProgressPhase, type AiwgChunkedIndexQueryOptions, type AiwgChunkedIndexQueryResult, type AiwgChunkedIndexValidationResult, type AiwgDetailIdEncoding, type AiwgFortemiAttachmentReference, type AiwgFortemiBinarySource, type AiwgFortemiChunk, type AiwgFortemiChunkDetailRef, type AiwgFortemiChunkManifest, type AiwgFortemiChunkPart, type AiwgFortemiChunkPartRef, type AiwgFortemiIndexExport, type AiwgFortemiIndexExportSchemaVersion, type AiwgFortemiKnownRecordType, type AiwgFortemiProjectedRecord, type AiwgFortemiProvenance, type AiwgFortemiProvenanceEvent, type AiwgFortemiRecord, type AiwgFortemiRecordEmbedding, type AiwgFortemiRecordSchemaVersion, type AiwgFortemiRecordSource, type AiwgFortemiRecordType, type AiwgFortemiRelationship, type AiwgFortemiRelationshipDirection, type AiwgFortemiSearchProjection, type AiwgFortemiSkosConcept, type AiwgFortemiSkosRelation, type AiwgFortemiSkosRelationType, type AiwgHeadlessEmbeddingBackend, type AiwgIndexController, type AiwgIndexControllerListener, type AiwgIndexControllerSnapshot, type AiwgIndexGraphOptions, type AiwgIndexQueryMatch, type AiwgIndexQueryOptions, type AiwgIndexQueryRankedItem, type AiwgIndexQueryResult, type AiwgIndexQueryWeights, type AiwgIndexValidationResult, type AiwgPrivacyClassification, type AiwgProvenanceConfidence, type AiwgRelationshipDirection, type AiwgRelationshipEdgeSummary, type AiwgRelationshipNodeSummary, type AiwgRelationshipQueryOptions, type AiwgRelationshipSetOperation, type AiwgRelationshipSetOptions, type AiwgRelationshipSetResult, type AiwgRelationshipTraversalOptions, type AiwgRelationshipTraversalResult, type AiwgReviewAction, type AiwgReviewDecision, type AiwgReviewDecisionExport, type AiwgReviewInput, type AiwgStaticDuplicatePair, type AiwgStaticEmbeddingRecord, type AiwgStaticEmbeddingSet, type AiwgStaticHybridQueryOptions, type AiwgStaticSemanticQueryOptions, type AiwgStaticSemanticResult, type BuildAiwgStaticEmbeddingSetOptions, aiwgDetailHrefForId, aiwgFortemiIndexToCommunityGraph, assertAiwgFortemiChunkManifest, assertAiwgFortemiChunkPart, assertAiwgFortemiIndexExport, assertAiwgStaticEmbeddingSet, buildAiwgChunkedIndex, buildAiwgStaticEmbeddingSet, createAiwgFetchChunkLoader, createAiwgFetchDetailLoader, createAiwgIndexController, createAiwgReviewDecisionExport, encodeAiwgDetailId, findAiwgStaticDuplicatePairs, getAiwgFortemiFacets, queryAiwgFortemiIndex, queryAiwgHybridIndex, queryAiwgSemanticIndex, validateAiwgFortemiChunkManifest, validateAiwgFortemiChunkPart, validateAiwgFortemiIndexExport, validateAiwgStaticEmbeddingSet };
1
+ export { A as AIWG_SCAN_REQUIRED_FIELDS, r as AiwgChunkedIndexBuildOptions, s as AiwgChunkedIndexBuildResult, t as AiwgChunkedIndexDetailLoader, u as AiwgChunkedIndexLoadOptions, v as AiwgChunkedIndexLoader, w as AiwgChunkedIndexProgress, x as AiwgChunkedIndexProgressPhase, y as AiwgChunkedIndexQueryOptions, z as AiwgChunkedIndexQueryResult, C as AiwgChunkedIndexValidationResult, b2 as AiwgDetailIdEncoding, D as AiwgFortemiAttachmentReference, F as AiwgFortemiBinarySource, G as AiwgFortemiChunk, H as AiwgFortemiChunkDetailRef, J as AiwgFortemiChunkManifest, K as AiwgFortemiChunkPart, L as AiwgFortemiChunkPartRef, M as AiwgFortemiIndexExport, N as AiwgFortemiIndexExportSchemaVersion, O as AiwgFortemiProjectedRecord, P as AiwgFortemiProvenance, Q as AiwgFortemiProvenanceEvent, R as AiwgFortemiRecord, T as AiwgFortemiRecordEmbedding, U as AiwgFortemiRecordSchemaVersion, V as AiwgFortemiRecordSource, W as AiwgFortemiRecordType, X as AiwgFortemiRelationship, Y as AiwgFortemiRelationshipDirection, Z as AiwgFortemiSearchProjection, _ as AiwgFortemiSkosConcept, $ as AiwgFortemiSkosRelation, a0 as AiwgFortemiSkosRelationType, a1 as AiwgHeadlessEmbeddingBackend, a2 as AiwgIndexController, a3 as AiwgIndexControllerListener, a4 as AiwgIndexControllerSnapshot, a5 as AiwgIndexGraphOptions, a6 as AiwgIndexQueryMatch, a7 as AiwgIndexQueryOptions, a8 as AiwgIndexQueryRankedItem, a9 as AiwgIndexQueryResult, aa as AiwgIndexQueryWeights, ab as AiwgIndexValidationResult, ac as AiwgPrivacyClassification, ad as AiwgPrivacyFilterOptions, ae as AiwgProvenanceConfidence, af as AiwgRelationshipDirection, ag as AiwgRelationshipEdgeSummary, ah as AiwgRelationshipNodeSummary, ai as AiwgRelationshipQueryOptions, aj as AiwgRelationshipSetOperation, ak as AiwgRelationshipSetOptions, al as AiwgRelationshipSetResult, am as AiwgRelationshipTraversalOptions, an as AiwgRelationshipTraversalResult, ao as AiwgReviewAction, ap as AiwgReviewDecision, aq as AiwgReviewDecisionExport, ar as AiwgReviewInput, as as AiwgStaticDuplicatePair, at as AiwgStaticEmbeddingRecord, au as AiwgStaticEmbeddingSet, av as AiwgStaticHybridQueryOptions, aw as AiwgStaticSemanticQueryOptions, ax as AiwgStaticSemanticResult, ay as BuildAiwgStaticEmbeddingSetOptions, b3 as DEFAULT_AIWG_DUPLICATE_SCAN_MAX_EMBEDDINGS, b4 as aiwgDetailHrefForId, aI as aiwgFortemiIndexToCommunityGraph, aJ as assertAiwgFortemiChunkManifest, aK as assertAiwgFortemiChunkPart, aL as assertAiwgFortemiIndexExport, aM as assertAiwgStaticEmbeddingSet, aN as buildAiwgChunkedIndex, aO as buildAiwgStaticEmbeddingSet, aP as createAiwgFetchChunkLoader, aQ as createAiwgFetchDetailLoader, aR as createAiwgIndexController, aS as createAiwgReviewDecisionExport, b5 as encodeAiwgDetailId, aU as filterAiwgRecordsByPrivacy, aV as findAiwgStaticDuplicatePairs, aW as getAiwgFortemiFacets, aX as queryAiwgFortemiIndex, aY as queryAiwgHybridIndex, aZ as queryAiwgSemanticIndex, b6 as resolveAiwgFetchUrl, a_ as validateAiwgFortemiChunkManifest, a$ as validateAiwgFortemiChunkPart, b0 as validateAiwgFortemiIndexExport, b1 as validateAiwgStaticEmbeddingSet } from './aiwg-index-C2G7iy-b.js';