@atbash/sdk 0.6.1 → 0.6.2
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/browser.d.mts +2 -2
- package/dist/browser.mjs +113 -320
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +28 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +28 -22
- package/dist/index.mjs.map +1 -1
- package/index.d.ts +0 -8
- package/index.js +52 -53
- package/package.json +5 -5
package/dist/browser.d.mts
CHANGED
|
@@ -585,8 +585,8 @@ declare function decryptMemoryContent(ciphertext: Buffer, nonce: Buffer, key: Bu
|
|
|
585
585
|
* Scan a single memory entry for poisoning.
|
|
586
586
|
*
|
|
587
587
|
* `auth` is the agent that signs the on-chain audit log for the
|
|
588
|
-
* LLM-judge call.
|
|
589
|
-
*
|
|
588
|
+
* LLM-judge call. The LLM is authoritative; unicode-evasion presence
|
|
589
|
+
* is surfaced to the prompt so the LLM can weight suspicion accordingly.
|
|
590
590
|
*/
|
|
591
591
|
declare function scanMemory(entry: MemoryEntry, auth: AgentAuth, opts?: MemoryScanOptions): Promise<MemoryScanResult>;
|
|
592
592
|
/**
|