From 6243ac40b71e98dd7d4fe6eb4f82543ad4a39b27 Mon Sep 17 00:00:00 2001 From: rock Date: Tue, 15 Sep 2026 00:53:30 +0900 Subject: [PATCH] feat(paperless-ai): enable intelligent timeline tagging with date extraction - Add ENABLE_INTELLIGENT_TAGGING for advanced AI-powered tagging - Add ENABLE_DATE_EXTRACTION for automatic date/timeline parsing - Add ENABLE_TIMELINE_TAGGING to create temporal tags (YYYY, Q#-YYYY, Last-Month, etc) - Set TAG_EXTRACTION_MODEL to reasoning for sophisticated analysis - Configure timeline granularity (year, quarter, month) - Add custom prompt for temporal context extraction - Auto-create tags for historical and recent documents --- k8s/apps/paperless/paperless-ai-config.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/k8s/apps/paperless/paperless-ai-config.yaml b/k8s/apps/paperless/paperless-ai-config.yaml index 7e67d2f..202623f 100644 --- a/k8s/apps/paperless/paperless-ai-config.yaml +++ b/k8s/apps/paperless/paperless-ai-config.yaml @@ -20,6 +20,16 @@ data: ENABLE_CORRESPONDENT_EXTRACTION=yes ENABLE_DOCUMENT_TYPE_EXTRACTION=yes ENABLE_TITLE_GENERATION=yes + + # Advanced tagging with AI + ENABLE_INTELLIGENT_TAGGING=yes + ENABLE_DATE_EXTRACTION=yes + ENABLE_TIMELINE_TAGGING=yes + AUTO_CREATE_TAGS=yes + + # Tagging prompts for custom extraction + CUSTOM_EXTRACTION_PROMPT=Extract document date, time period, financial year, and temporal context. Create tags like YYYY, Q1-YYYY, Last-Month, Current-Year, Historic + TAG_EXTRACTION_MODEL=reasoning # Scanning behavior SCAN_INTERVAL_SECONDS=60 @@ -27,6 +37,13 @@ data: ADD_AI_TAG=yes AI_TAG_NAME=ai-processed + # Date/Timeline tagging configuration + DATE_EXTRACTION_FORMAT=iso8601 + TIMELINE_TAG_GRANULARITY=year,quarter,month + AUTO_TAG_HISTORICAL=yes + AUTO_TAG_RECENT=yes + # Performance MAX_CONCURRENT_REQUESTS=2 REQUEST_TIMEOUT=60 + DATE_EXTRACTION_TIMEOUT=30