Skip to content

Commit 2d5a9c8

Browse files
devlux76Copilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 4064892 commit 2d5a9c8

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

docs/api.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -506,9 +506,10 @@ const result = await ingestText("Your text content here...", {
506506
embeddingRunner, // EmbeddingRunner — resolves and runs the embedding model
507507
vectorStore, // VectorStore — append-only, non-deduplicating vector file (OPFS or in-memory)
508508
metadataStore, // MetadataStore — structured hierarchy store (IndexedDB)
509-
creatorKeyPair: {
510-
publicKey, // PublicKey — creator's identity for signing pages
511-
privateKey, // CryptoKey — used to sign each page
509+
keyPair: {
510+
publicKey, // PublicKey — creator's identity for verifying page signatures
511+
privateKeyJwk, // JsonWebKey — exportable private key material used for signing
512+
signingKey, // CryptoKey — private signing key used to sign each page
512513
},
513514
});
514515
```

0 commit comments

Comments
 (0)