llmemory 0.2.5 → 0.2.6
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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/llmemory/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc40425c3adccdf3b900f4421cb642feb9e816df10934fe5fe360f2bb2a16706
|
|
4
|
+
data.tar.gz: b1267ceae049b4c69655987b15fda8517616bde9f2048301bdc030f4d92b1259
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f81850bc29cdeeec37d1d590442376bba2e473e895d0dda7f5be2c0c41d86b7e9bac0b0e2e1e731895a6ae978da78ca68be038ae5d9976bfcd4a1ec5702adec6
|
|
7
|
+
data.tar.gz: 12d5f1736a795336d3ef951b5fde2ef1e89b1d0a193e00d00fc2de88e5337beee309198dd016ed7e4980598a85c342387713652b66e19fadb2455c853a7a5d94
|
data/README.md
CHANGED
|
@@ -14,7 +14,7 @@ gem "llmemory"
|
|
|
14
14
|
|
|
15
15
|
Then run `bundle install`.
|
|
16
16
|
|
|
17
|
-
**Upgrading?** See the [Migration guide](
|
|
17
|
+
**Upgrading?** See the [Migration guide](migration/MIGRATION.md) for database columns, encryption backfill, and graph store configuration changes.
|
|
18
18
|
|
|
19
19
|
## Quick Start (Unified API)
|
|
20
20
|
|
|
@@ -173,7 +173,7 @@ memory = Llmemory::Memory.new(user_id: "agent-1", encryption_key: "tenant-specif
|
|
|
173
173
|
**What is encrypted:** conversation checkpoints (redis/postgres/active_record), file-based facts/resources/categories, episodic/procedural documents, graph node names/types/predicates (deterministic) and properties (random IV). **Vector embeddings are not encrypted** (required for pgvector search); associated `text_content` metadata is encrypted.
|
|
174
174
|
|
|
175
175
|
**Trade-offs:**
|
|
176
|
-
- Database keyword search on encrypted columns requires the `search_tokens` blind-index column (see [Migration guide](
|
|
176
|
+
- Database keyword search on encrypted columns requires the `search_tokens` blind-index column (see [Migration guide](migration/MIGRATION.md)); file backends search in memory after decrypt without schema changes.
|
|
177
177
|
- `:memory` backends are in-process only and are **not** encrypted at rest.
|
|
178
178
|
- Existing plaintext data remains readable (markers `enc:v1:` / `encd:v1:`); new writes are encrypted when enabled.
|
|
179
179
|
- Deterministic encryption on graph identifiers leaks equality (same name ⇒ same ciphertext) but keeps graph traversal working.
|
data/lib/llmemory/version.rb
CHANGED