From 943fcd9bf9d0a27edbb9d9373bce052f999175ca Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Mon, 29 Dec 2025 21:00:35 +0100 Subject: [PATCH] release: v1.6.0 - Memory system with scheduler integration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Complete three-tier memory architecture: - Volatile fetch endpoints for scheduler-driven prefetch - Unified memory routing in consolidation service - Paperless document recall in HybridRAG - External scheduler integration for prefetch tasks 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bcaaf5..02984f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,35 @@ All notable changes to Library Desk will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.6.0] - 2025-12-29 + +### Added + +- **Memory System Implementation** - Complete three-tier memory architecture + - **Volatile Fetch Endpoints** - Scheduler-driven prefetch for ephemeral data + - `POST /volatile/fetch/{namespace}/{key}` - Fetch and cache external data + - Weather, news, and financial data providers integrated + - Auto-caching with namespace-specific TTLs + - **Unified Memory Routing** - LLM-based classification of web results + - Routes content to wiki (stable), volatile (ephemeral), file (documents), or prefetch (scheduled) + - Integrated into consolidation service post-processor + - **Document Recall in HybridRAG** - Paperless documents as fourth retrieval source + - Documents searched alongside wiki, volatile, and web in parallel + - New config: `enable_documents`, `document_limit`, `document_threshold` + - `paperless_id` field in results for document attribution + - `document_ms` timing in performance breakdown + +- **Scheduler Integration** - External scheduler service for prefetch task management + - `SchedulerClient` - Full REST API client for task CRUD operations + - `register_volatile_fetch()` convenience method for prefetch registration + - Consolidation service now creates scheduled tasks for prefetch-worthy content + - Health checks integrated into startup/shutdown lifecycle + +### Changed + +- HybridRAG now searches 4 sources in parallel (wiki, volatile, documents, web) +- Consolidation service uses external scheduler instead of settings storage for prefetch + ## [1.5.0] - 2025-12-26 ### Added diff --git a/pyproject.toml b/pyproject.toml index 454995c..9a87721 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "library-desk" -version = "1.5.0" +version = "1.6.0" description = "Coordination service for The Library system - HybridRAG queries, document ingestion, entity extraction, and knowledge consolidation" readme = "README.md" requires-python = ">=3.12"