From 75fc090a2233ef391cd70e6d68099a98150c8dbf Mon Sep 17 00:00:00 2001 From: Yury Kossakovsky Date: Sun, 2 Nov 2025 09:54:16 -0700 Subject: [PATCH] Update LightRAG service description and adjust wizard display size - Modified the LightRAG service description in the wizard script for clarity. - Increased the display size in the service selection wizard to accommodate longer descriptions. --- scripts/04_wizard.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/04_wizard.sh b/scripts/04_wizard.sh index 9414101..7f56abc 100755 --- a/scripts/04_wizard.sh +++ b/scripts/04_wizard.sh @@ -58,7 +58,7 @@ base_services_data=( "gotenberg" "Gotenberg (Document Conversion API)" "langfuse" "Langfuse Suite (AI Observability - includes Clickhouse, Minio)" "letta" "Letta (Agent Server & SDK)" - "lightrag" "LightRAG (Graph-based RAG with knowledge graphs and incremental updates)" + "lightrag" "LightRAG (Graph-based RAG with knowledge graphs)" "libretranslate" "LibreTranslate (Self-hosted translation API - 50+ languages)" "monitoring" "Monitoring Suite (Prometheus, Grafana, cAdvisor, Node-Exporter)" "n8n" "n8n, n8n-worker, n8n-import (Workflow Automation)" @@ -112,7 +112,7 @@ done # Use whiptail to display the checklist num_services=$(( ${#services[@]} / 3 )) CHOICES=$(whiptail --title "Service Selection Wizard" --checklist \ - "Choose the services you want to deploy.\nUse ARROW KEYS to navigate, SPACEBAR to select/deselect, ENTER to confirm." 32 90 $num_services \ + "Choose the services you want to deploy.\nUse ARROW KEYS to navigate, SPACEBAR to select/deselect, ENTER to confirm." 32 100 $num_services \ "${services[@]}" \ 3>&1 1>&2 2>&3)