@fortemi/core 2026.6.9 → 2026.7.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/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { PGlite } from '@electric-sql/pglite';
2
2
  import { z, ZodType } from 'zod';
3
- export { AIWG_SCAN_REQUIRED_FIELDS, AiwgChunkedIndexBuildOptions, AiwgChunkedIndexBuildResult, AiwgChunkedIndexDetailLoader, AiwgChunkedIndexLoadOptions, AiwgChunkedIndexLoader, AiwgChunkedIndexProgress, AiwgChunkedIndexProgressPhase, AiwgChunkedIndexQueryOptions, AiwgChunkedIndexQueryResult, AiwgChunkedIndexValidationResult, AiwgFortemiChunkDetailRef, AiwgFortemiChunkManifest, AiwgFortemiChunkPart, AiwgFortemiChunkPartRef, AiwgFortemiIndexExport, AiwgFortemiProjectedRecord, AiwgFortemiProvenance, AiwgFortemiProvenanceEvent, AiwgFortemiRecord, AiwgFortemiRecordSource, AiwgFortemiRecordType, AiwgFortemiRelationship, AiwgFortemiSkosConcept, AiwgFortemiSkosRelation, AiwgFortemiSkosRelationType, AiwgIndexController, AiwgIndexControllerListener, AiwgIndexControllerSnapshot, AiwgIndexGraphOptions, AiwgIndexQueryMatch, AiwgIndexQueryOptions, AiwgIndexQueryRankedItem, AiwgIndexQueryResult, AiwgIndexQueryWeights, AiwgIndexValidationResult, AiwgPrivacyClassification, AiwgProvenanceConfidence, AiwgReviewAction, AiwgReviewDecision, AiwgReviewDecisionExport, AiwgReviewInput, aiwgFortemiIndexToCommunityGraph, assertAiwgFortemiChunkManifest, assertAiwgFortemiChunkPart, assertAiwgFortemiIndexExport, buildAiwgChunkedIndex, createAiwgFetchChunkLoader, createAiwgFetchDetailLoader, createAiwgIndexController, createAiwgReviewDecisionExport, getAiwgFortemiFacets, queryAiwgFortemiIndex, validateAiwgFortemiChunkManifest, validateAiwgFortemiChunkPart, validateAiwgFortemiIndexExport } from './aiwg-index.js';
3
+ export { AIWG_SCAN_REQUIRED_FIELDS, AiwgChunkedIndexBuildOptions, AiwgChunkedIndexBuildResult, AiwgChunkedIndexDetailLoader, AiwgChunkedIndexLoadOptions, AiwgChunkedIndexLoader, AiwgChunkedIndexProgress, AiwgChunkedIndexProgressPhase, AiwgChunkedIndexQueryOptions, AiwgChunkedIndexQueryResult, AiwgChunkedIndexValidationResult, AiwgFortemiChunkDetailRef, AiwgFortemiChunkManifest, AiwgFortemiChunkPart, AiwgFortemiChunkPartRef, AiwgFortemiIndexExport, AiwgFortemiKnownRecordType, AiwgFortemiProjectedRecord, AiwgFortemiProvenance, AiwgFortemiProvenanceEvent, AiwgFortemiRecord, AiwgFortemiRecordSource, AiwgFortemiRecordType, AiwgFortemiRelationship, AiwgFortemiSkosConcept, AiwgFortemiSkosRelation, AiwgFortemiSkosRelationType, AiwgIndexController, AiwgIndexControllerListener, AiwgIndexControllerSnapshot, AiwgIndexGraphOptions, AiwgIndexQueryMatch, AiwgIndexQueryOptions, AiwgIndexQueryRankedItem, AiwgIndexQueryResult, AiwgIndexQueryWeights, AiwgIndexValidationResult, AiwgPrivacyClassification, AiwgProvenanceConfidence, AiwgRelationshipDirection, AiwgRelationshipEdgeSummary, AiwgRelationshipNodeSummary, AiwgRelationshipQueryOptions, AiwgRelationshipSetOperation, AiwgRelationshipSetOptions, AiwgRelationshipSetResult, AiwgRelationshipTraversalOptions, AiwgRelationshipTraversalResult, AiwgReviewAction, AiwgReviewDecision, AiwgReviewDecisionExport, AiwgReviewInput, AiwgStaticDuplicatePair, AiwgStaticEmbeddingRecord, AiwgStaticEmbeddingSet, AiwgStaticHybridQueryOptions, AiwgStaticSemanticQueryOptions, AiwgStaticSemanticResult, aiwgFortemiIndexToCommunityGraph, assertAiwgFortemiChunkManifest, assertAiwgFortemiChunkPart, assertAiwgFortemiIndexExport, assertAiwgStaticEmbeddingSet, buildAiwgChunkedIndex, createAiwgFetchChunkLoader, createAiwgFetchDetailLoader, createAiwgIndexController, createAiwgReviewDecisionExport, findAiwgStaticDuplicatePairs, getAiwgFortemiFacets, queryAiwgFortemiIndex, queryAiwgHybridIndex, queryAiwgSemanticIndex, validateAiwgFortemiChunkManifest, validateAiwgFortemiChunkPart, validateAiwgFortemiIndexExport, validateAiwgStaticEmbeddingSet } from './aiwg-index.js';
4
4
 
5
5
  /**
6
6
  * Generate a RFC 9562 UUIDv7 identifier.
@@ -2326,8 +2326,9 @@ declare function manageNote(db: DatabaseClient, rawInput: unknown, events?: Type
2326
2326
  /**
2327
2327
  * searchTool — tool function wrapping SearchRepository.
2328
2328
  *
2329
- * Only 'text' mode is currently supported. Semantic and hybrid modes throw a
2330
- * descriptive error so callers can surface appropriate feedback.
2329
+ * Text mode is always available. Semantic, hybrid, and auto modes are available
2330
+ * when the host passes a query_embedding; forced semantic/hybrid fail clearly
2331
+ * without one while auto falls back to lexical search.
2331
2332
  *
2332
2333
  * Input is Zod-validated at entry.
2333
2334
  */
@@ -2364,19 +2365,19 @@ declare const CaptureKnowledgeInputSchema: z.ZodObject<{
2364
2365
  }, {
2365
2366
  content: string;
2366
2367
  title?: string | undefined;
2367
- format?: "markdown" | "plain" | "html" | undefined;
2368
2368
  tags?: string[] | undefined;
2369
+ format?: "markdown" | "plain" | "html" | undefined;
2369
2370
  }>, "many">>;
2370
2371
  template: z.ZodOptional<z.ZodString>;
2371
2372
  variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2372
2373
  }, "strip", z.ZodTypeAny, {
2373
2374
  source: string;
2374
2375
  format: "markdown" | "plain" | "html";
2375
- visibility: "private" | "shared" | "public";
2376
+ visibility: "private" | "public" | "shared";
2376
2377
  action: "create" | "bulk_create" | "from_template";
2377
2378
  title?: string | undefined;
2378
- archive_id?: string | undefined;
2379
2379
  tags?: string[] | undefined;
2380
+ archive_id?: string | undefined;
2380
2381
  content?: string | undefined;
2381
2382
  notes?: {
2382
2383
  format: "markdown" | "plain" | "html";
@@ -2390,16 +2391,16 @@ declare const CaptureKnowledgeInputSchema: z.ZodObject<{
2390
2391
  action: "create" | "bulk_create" | "from_template";
2391
2392
  source?: string | undefined;
2392
2393
  title?: string | undefined;
2394
+ tags?: string[] | undefined;
2393
2395
  archive_id?: string | undefined;
2394
2396
  format?: "markdown" | "plain" | "html" | undefined;
2395
- visibility?: "private" | "shared" | "public" | undefined;
2396
- tags?: string[] | undefined;
2397
+ visibility?: "private" | "public" | "shared" | undefined;
2397
2398
  content?: string | undefined;
2398
2399
  notes?: {
2399
2400
  content: string;
2400
2401
  title?: string | undefined;
2401
- format?: "markdown" | "plain" | "html" | undefined;
2402
2402
  tags?: string[] | undefined;
2403
+ format?: "markdown" | "plain" | "html" | undefined;
2403
2404
  }[] | undefined;
2404
2405
  template?: string | undefined;
2405
2406
  variables?: Record<string, string> | undefined;
@@ -2430,7 +2431,9 @@ declare const ManageNoteInputSchema: z.ZodObject<{
2430
2431
  type ManageNoteInput = z.infer<typeof ManageNoteInputSchema>;
2431
2432
  declare const SearchInputSchema: z.ZodObject<{
2432
2433
  query: z.ZodString;
2433
- mode: z.ZodDefault<z.ZodEnum<["text", "semantic", "hybrid"]>>;
2434
+ mode: z.ZodDefault<z.ZodEnum<["text", "semantic", "hybrid", "auto"]>>;
2435
+ query_embedding: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2436
+ embeddingSetId: z.ZodOptional<z.ZodString>;
2434
2437
  limit: z.ZodDefault<z.ZodNumber>;
2435
2438
  offset: z.ZodDefault<z.ZodNumber>;
2436
2439
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2444,35 +2447,39 @@ declare const SearchInputSchema: z.ZodObject<{
2444
2447
  visibility: z.ZodOptional<z.ZodEnum<["private", "shared", "public"]>>;
2445
2448
  include_facets: z.ZodDefault<z.ZodBoolean>;
2446
2449
  }, "strip", z.ZodTypeAny, {
2447
- limit: number;
2450
+ query: string;
2448
2451
  offset: number;
2452
+ limit: number;
2449
2453
  include_facets: boolean;
2450
- mode: "text" | "semantic" | "hybrid";
2451
- query: string;
2454
+ mode: "text" | "auto" | "semantic" | "hybrid";
2452
2455
  source?: string | undefined;
2456
+ tags?: string[] | undefined;
2453
2457
  format?: "markdown" | "plain" | "html" | undefined;
2454
- visibility?: "private" | "shared" | "public" | undefined;
2458
+ visibility?: "private" | "public" | "shared" | undefined;
2455
2459
  is_starred?: boolean | undefined;
2456
2460
  is_archived?: boolean | undefined;
2457
- tags?: string[] | undefined;
2458
2461
  collection_id?: string | undefined;
2459
2462
  date_from?: Date | undefined;
2460
2463
  date_to?: Date | undefined;
2464
+ embeddingSetId?: string | undefined;
2465
+ query_embedding?: number[] | undefined;
2461
2466
  }, {
2462
2467
  query: string;
2463
2468
  source?: string | undefined;
2469
+ tags?: string[] | undefined;
2470
+ offset?: number | undefined;
2471
+ limit?: number | undefined;
2464
2472
  format?: "markdown" | "plain" | "html" | undefined;
2465
- visibility?: "private" | "shared" | "public" | undefined;
2473
+ visibility?: "private" | "public" | "shared" | undefined;
2466
2474
  is_starred?: boolean | undefined;
2467
2475
  is_archived?: boolean | undefined;
2468
- tags?: string[] | undefined;
2469
- limit?: number | undefined;
2470
- offset?: number | undefined;
2471
2476
  collection_id?: string | undefined;
2472
2477
  date_from?: Date | undefined;
2473
2478
  date_to?: Date | undefined;
2474
2479
  include_facets?: boolean | undefined;
2475
- mode?: "text" | "semantic" | "hybrid" | undefined;
2480
+ mode?: "text" | "auto" | "semantic" | "hybrid" | undefined;
2481
+ embeddingSetId?: string | undefined;
2482
+ query_embedding?: number[] | undefined;
2476
2483
  }>;
2477
2484
  type SearchInput = z.infer<typeof SearchInputSchema>;
2478
2485
 
@@ -2550,22 +2557,22 @@ declare const ListNotesInputSchema: z.ZodObject<{
2550
2557
  collection_id: z.ZodOptional<z.ZodString>;
2551
2558
  include_deleted: z.ZodOptional<z.ZodBoolean>;
2552
2559
  }, "strip", z.ZodTypeAny, {
2553
- sort: "created_at" | "updated_at" | "title";
2554
- limit: number;
2560
+ sort: "title" | "updated_at" | "created_at";
2555
2561
  offset: number;
2562
+ limit: number;
2556
2563
  order: "asc" | "desc";
2564
+ tags?: string[] | undefined;
2557
2565
  is_starred?: boolean | undefined;
2558
2566
  is_archived?: boolean | undefined;
2559
- tags?: string[] | undefined;
2560
2567
  include_deleted?: boolean | undefined;
2561
2568
  collection_id?: string | undefined;
2562
2569
  }, {
2563
- sort?: "created_at" | "updated_at" | "title" | undefined;
2564
- is_starred?: boolean | undefined;
2565
- is_archived?: boolean | undefined;
2566
2570
  tags?: string[] | undefined;
2567
- limit?: number | undefined;
2571
+ sort?: "title" | "updated_at" | "created_at" | undefined;
2568
2572
  offset?: number | undefined;
2573
+ limit?: number | undefined;
2574
+ is_starred?: boolean | undefined;
2575
+ is_archived?: boolean | undefined;
2569
2576
  order?: "asc" | "desc" | undefined;
2570
2577
  include_deleted?: boolean | undefined;
2571
2578
  collection_id?: string | undefined;
@@ -2579,12 +2586,12 @@ declare const ManageTagsInputSchema: z.ZodObject<{
2579
2586
  tag: z.ZodOptional<z.ZodString>;
2580
2587
  }, "strip", z.ZodTypeAny, {
2581
2588
  action: "add" | "remove" | "list_for_note" | "list_all";
2582
- note_id?: string | undefined;
2583
2589
  tag?: string | undefined;
2590
+ note_id?: string | undefined;
2584
2591
  }, {
2585
2592
  action: "add" | "remove" | "list_for_note" | "list_all";
2586
- note_id?: string | undefined;
2587
2593
  tag?: string | undefined;
2594
+ note_id?: string | undefined;
2588
2595
  }>;
2589
2596
  type ManageTagsInput = z.infer<typeof ManageTagsInputSchema>;
2590
2597
  interface ManageTagsResult {
@@ -2606,17 +2613,17 @@ declare const ManageCollectionsInputSchema: z.ZodObject<{
2606
2613
  note_id: z.ZodOptional<z.ZodString>;
2607
2614
  }, "strip", z.ZodTypeAny, {
2608
2615
  action: "create" | "delete" | "list" | "assign" | "unassign" | "list_tree";
2609
- collection_id?: string | undefined;
2610
- note_id?: string | undefined;
2611
2616
  name?: string | undefined;
2612
2617
  description?: string | undefined;
2618
+ collection_id?: string | undefined;
2619
+ note_id?: string | undefined;
2613
2620
  parent_id?: string | undefined;
2614
2621
  }, {
2615
2622
  action: "create" | "delete" | "list" | "assign" | "unassign" | "list_tree";
2616
- collection_id?: string | undefined;
2617
- note_id?: string | undefined;
2618
2623
  name?: string | undefined;
2619
2624
  description?: string | undefined;
2625
+ collection_id?: string | undefined;
2626
+ note_id?: string | undefined;
2620
2627
  parent_id?: string | undefined;
2621
2628
  }>;
2622
2629
  type ManageCollectionsInput = z.infer<typeof ManageCollectionsInputSchema>;
@@ -3777,6 +3784,6 @@ declare function getPrefetchedSha256(url: string): string | undefined;
3777
3784
  */
3778
3785
  declare function clearPrefetchedShard(url?: string): void;
3779
3786
 
3780
- declare const VERSION = "2026.6.8";
3787
+ declare const VERSION = "2026.7.0";
3781
3788
 
3782
3789
  export { type ArchiveInfo, ArchiveManager, type AttachInput, type AttachmentBlobRow, type AttachmentRow, AttachmentsRepository, type BackendCandidate, type BackendCapabilities, type BackendConcept, type BackendLink, type BackendListOptions, type BackendNote, type BackendNoteFull, type BackendProvenanceEdge, type BackendRequest, type BackendSearchHit, type BackendSearchQueryOptions, type BackendSearchResult, type BackendSelection, type BackendSemanticTier, type BackendStartupCost, type BlobStore, type BridgeCapability, type BridgeProviderInfo, type BrowserNoteExport, CURRENT_MIGRATION_HEAD, CURRENT_SHARD_VERSION, type CapabilityInfo, CapabilityManager, type CapabilityName, type CapabilityState, type CaptureKnowledgeInput, CaptureKnowledgeInputSchema, type CaptureKnowledgeResult, type CollectionCreateInput, type CollectionRow, CollectionsRepository, CommunitiesRepository, type CommunityAssignmentView, type CommunityCreateInput, type CommunityFilterDefinition, type CommunityGraph, type CommunityOptions, type CommunitySourceDescriptor, type CommunitySourceType, type CommunitySummary, type CompletionRequest, type CompletionResponse, type ConditionResult, type ConflictStrategy, type CooldownConfig, type CooldownEvent, type CosineSemanticProviderOptions, type CreatePGliteOptions, type CspDirectiveName, type CspDirectives, type CspViolationReport, DB_SNAPSHOT_SCHEMA_VERSION, type DataBackend, type DatabaseClient, type DbSnapshot, type DbSnapshotCompat, type DbSnapshotCompression, type DbSnapshotExpectations, type DbSnapshotMeta, type DbSnapshotSource, DbSnapshotVersionError, type DiscoveredProvider, type DiscoveryOptions, type DumpDbSnapshotOptions, type DumpableDb, EMBED_REQUEST_KIND, EMBED_RESPONSE_KIND, type EmbedFunction, type EmbedRequest, type EmbedRequestMessage, type EmbedResponse, type EmbedResponseMessage, type EmbedTransportPort, type EmbedWorkerOptions, type EmbeddingCompatibilityPolicy, type EmbeddingSetCreateInput, type EmbeddingSetCriteria, type EmbeddingSetDescriptor, type EmbeddingSetEmbeddingInput, type EmbeddingSetFreshness, type EmbeddingSetKind, type EmbeddingSetMode, type EmbeddingSetRow, type EmbeddingSetSelector, EmbeddingSetsRepository, type EnqueueJobInput, type ErrorCategory, type EventMap, type ExportOptions, type FallbackEvent, FallbackRouter, type FallbackRouterConfig, type FortemiBridge, type FortemiBridgeCapabilities, type FortemiBridgeHost, type FortemiConfig, type FortemiCore, type FortemiInferenceRouter, type FortemiSecretStore, type FortemiToolDefinition, FortemiToolManifest, type GetNoteInput, GetNoteInputSchema, type GpuCapabilities, type GraphCommunity, type GraphEdge, type GraphNode, GraphRepository, type IDisposable, type ImportCounts, type ImportOptions, type ImportProgress, type ImportProgressPhase, type ImportResult, type InferenceCapabilities, type InferenceProvider, JOB_CAPABILITIES, JOB_PRIORITIES, type JobQueueOptions, JobQueueWorker, type JobStatus, type JobType, LOCAL_ENDPOINTS, type LinkRow, LinksRepository, type ListNotesInput, ListNotesInputSchema, type LlmCapabilityOptions, type LlmCompleteFn, type LoadedPluginScript, type LocalEndpoint, type ManageArchiveInput, ManageArchiveInputSchema, type ManageArchiveResult, type ManageAttachmentsInput, ManageAttachmentsInputSchema, type ManageAttachmentsResult, type ManageCapabilitiesInput, ManageCapabilitiesInputSchema, type ManageCapabilitiesResult, type ManageCollectionsInput, ManageCollectionsInputSchema, type ManageCollectionsResult, type ManageLinksInput, ManageLinksInputSchema, type ManageLinksResult, type ManageNoteInput, ManageNoteInputSchema, type ManageNoteResult, type ManageTagsInput, ManageTagsInputSchema, type ManageTagsResult, MemoryBlobStore, type Migration, MigrationRunner, type ModelCategory, type ModelFitResult, type ModelInfo, type NoteCreateInput, type NoteFull, type NoteListOptions, type NoteRevision, type NoteSkosTag, type NoteSummary, type NoteUpdateInput, NotesRepository, OpenAICompatibleProvider, type OpenAIProviderConfig, type OpenShardOptions, type PGliteBackendOptions, PGliteStorageBackend, PGliteStorageBackendFactory, PGliteWorkerClient, PGliteWorkerStorageBackend, PGliteWorkerStorageBackendFactory, type PGliteWorkerStorageBackendFactoryOptions, type PaginatedResult, type PersistenceMode, type PluginCspOptions, type PluginScriptDescriptor, type PluginScriptPolicy, type PrefetchOptions, type PrefetchResult, type ProbeResult, type ProbeStatus, type ProvenanceEdge, ProvenanceRepository, type ProviderCapabilities, ProviderRegistry, type ProviderTier, type QueryExecutor, type QueryResult, type RecommendedTier, type RecordProvenanceInput, type RemoteBackendConfig, type RemoteBackendPaths, type ResolvedEmbeddingRow, type ResolvedEmbeddingSet, type RestoreDbSnapshotOptions, type RouteHandler, SHARD_FORMAT, SUPPORTED_PGLITE_VERSION, type SWRegistrationResult, type SearchFacets, type SearchInput, SearchInputSchema, type SearchOptions, SearchRepository, type SearchResponse, type SearchResult, type ShardBackendOptions, type ShardClusterRef, type ShardCollection, type ShardComponent, type ShardComponentStore, type ShardEmbedding, type ShardEmbeddingSet, type ShardEmbeddingSetMember, type ShardLayout, type ShardLink, type ShardListOptions, type ShardManifest, type ShardNote, type ShardNoteFull, type ShardNoteSkosTag, type ShardProvenanceEdge, type ShardReader, type ShardReaderNote, type ShardReaderSource, type ShardSearchOptions, type ShardSearchRankedNote, type ShardSearchResult, type ShardSearchWeights, type ShardSkosConcept, type ShardSkosRelation, type ShardSkosScheme, type ShardTag, type SimilarityGraphCacheKey, type SimilarityGraphOptions, type SimilarityGraphRequest, type SimilarityGraphResult, type SkosConcept, type SkosRelation, SkosRepository, type SkosScheme, type StaticSemanticProvider, type StorageBackend, type StorageBackendFactory, type StorageOpenRequest, type StorageTopology, type StreamChunk, TagsRepository, TransactionProxy, TypedEventBus, VERSION, type VectorEntry, type VirtualEmbeddingSetDefinition, type VirtualEmbeddingSetSource, type VirtualEmbeddingSetValidationError, type VirtualMaterializationPolicy, type VramTier, type WorkerRequest, type WorkerResponse, aiRevisionHandler, allMigrations, appendPluginScript, buildNoteConditions, buildPluginCsp, captureKnowledge, chunkText, classifyError, classifyModel, clearPrefetchedShard, collectionFromShard, collectionToShard, computeHash, computeSri, conceptTaggingHandler, cosineSimilarity, createBlobStore, createCosineSemanticProvider, createCspReportHandler, createFortemi, createLegacyProvider, createPGliteBackend, createPGliteInstance, createRemoteBackend, createRoutes, createShardBackend, createWorkerEmbedFunction, defaultStorageBackendFactory, detectCommunities, detectGpuCapabilities, detectInferenceCapabilities, discoverLocalProviders, dumpDbSnapshot, embeddingFromShard, embeddingGenerationHandler, embeddingSetFromShard, embeddingSetMemberToShard, embeddingSetToShard, embeddingToShard, enqueueFullWorkflow, enqueueJob, enqueueNoteCreationJobs, estimateModelFit, estimateVramMB, estimateVramTier, exportShard, fetchPluginScript, fortemiManifest, fromPrefetched, generateId, getEmbedFunction, getFortemiBridge, getFortemiSecretStore, getJobQueueStatus, getLlmFunction, getNote, getPrefetchedSha256, handleEmbedRequests, hasFortemiSecureSecrets, importShard, isPluginScriptAllowed, isShardPrefetched, linkFromShard, linkToShard, linkingHandler, listNotes, manageArchive, manageAttachments, manageCapabilities, manageCollections, manageLinks, manageNote, manageTags, matchRoute, noteFromShard, noteSkosTagToShard, noteToShard, openShard, packTarGz, parseCspReport, prefetchShard, provenanceEdgeToShard, registerLlmCapability, registerSemanticCapability, registerSemanticCapabilityWorker, registerServiceWorker, restoreDbSnapshot, searchTool, selectBackend, selectLlmModel, setEmbedFunction, setLlmFunction, sha256Hex, skosConceptToShard, skosRelationToShard, skosSchemeToShard, suggestTags, tagsFromShard, tagsToShard, titleGenerationHandler, unpackTarGz, unregisterLlmCapability, unregisterSemanticCapability, validateChecksums, verifyDbSnapshotMeta, verifySri };