release: v1.6.0 - Memory system with scheduler integration
Build and Push / build (release) Successful in 1m20s

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 <noreply@anthropic.com>
This commit is contained in:
2025-12-29 21:00:35 +01:00
co-authored by Claude Opus 4.5
parent 910b289c9e
commit 943fcd9bf9
2 changed files with 30 additions and 1 deletions
+29
View File
@@ -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
+1 -1
View File
@@ -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"