We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4064892 commit 2d5a9c8Copy full SHA for 2d5a9c8
1 file changed
docs/api.md
@@ -506,9 +506,10 @@ const result = await ingestText("Your text content here...", {
506
embeddingRunner, // EmbeddingRunner — resolves and runs the embedding model
507
vectorStore, // VectorStore — append-only, non-deduplicating vector file (OPFS or in-memory)
508
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
+ keyPair: {
+ publicKey, // PublicKey — creator's identity for verifying page signatures
+ privateKeyJwk, // JsonWebKey — exportable private key material used for signing
512
+ signingKey, // CryptoKey — private signing key used to sign each page
513
},
514
});
515
```
0 commit comments