@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.
@@ -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. If Layer 1 (regex pre-filter) returns red, Layer 2
589
- * (LLM) is skipped.
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
  /**