@absolutejs/rag 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.
@@ -68,14 +68,4 @@ export type RAGCorpusResult = {
68
68
  removed: number;
69
69
  unchanged: number;
70
70
  };
71
- /**
72
- * Bring an owner's embedded corpus in line with what they should have.
73
- *
74
- * Ordering is deliberate. Deletions run FIRST and their records are forgotten
75
- * only after the vectors are gone: a crash mid-pass then leaves a record whose
76
- * vector may already be deleted, which a later pass simply deletes again
77
- * (harmless), rather than a vector whose record is gone — which nothing could
78
- * ever find. Embedding records its digests after the write for the same reason,
79
- * so an interrupted run never claims to have embedded something it did not.
80
- */
81
71
  export declare const reconcileRAGCorpus: <Owner = string>(store: RAGCorpusStore<Owner>, owner: Owner, desired: RAGCorpusDocument[], apply: RAGCorpusApply<Owner>) => Promise<RAGCorpusResult>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/rag",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "homepage": "https://github.com/absolutejs/rag",
5
5
  "bugs": {
6
6
  "url": "https://github.com/absolutejs/rag/issues"