agenr 0.9.9 → 0.9.11

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/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.11 - 2026-02-27
4
+
5
+ ### Fixed
6
+ - Added 15s timeout to LLM dedup pre-screening calls in consolidate clustering
7
+ to prevent hangs from unresponsive LLM endpoints.
8
+
9
+ ## 0.9.10 - 2026-02-27
10
+
11
+ ### Added
12
+ - Ingest creates co-recall edges between entries extracted from the same
13
+ session file, seeding the graph for graph-augmented recall after fresh
14
+ installs or DB resets (#300).
15
+ - Ingest backfills co-recall edges for already-ingested files on re-ingest
16
+ without requiring --force (#300).
17
+ - Consolidation clustering now uses in-memory pairwise cosine similarity
18
+ instead of per-entry SQLite vector queries, eliminating O(N) database
19
+ round-trips (#263).
20
+ - Consolidation clustering now supports a loose similarity band with
21
+ subject-aware auto-union and optional LLM pre-screening to catch
22
+ semantically equivalent entries below the tight cosine threshold (#264).
23
+ - Consolidation reports now include loose-band LLM dedup pre-screen call and
24
+ match counts across phases (#264).
25
+
3
26
  ## 0.9.9 - 2026-02-27
4
27
 
5
28
  ### Added