From ba81e717e2d94746bfc308f482cabf287a7f5a49 Mon Sep 17 00:00:00 2001 From: Yury Kossakovsky Date: Sun, 9 Nov 2025 14:24:38 -0700 Subject: [PATCH] Refactor Docling final report output for clarity and consistency - Updated the final report script to streamline the output for the Docling service by reorganizing the displayed information. - Removed redundant lines and ensured that essential details such as API endpoints and user credentials are clearly presented. --- scripts/07_final_report.sh | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/scripts/07_final_report.sh b/scripts/07_final_report.sh index 2bf904f..0da38d3 100644 --- a/scripts/07_final_report.sh +++ b/scripts/07_final_report.sh @@ -225,25 +225,16 @@ if is_profile_active "docling"; then echo echo "================================= Docling =============================" echo - echo "Host: ${DOCLING_HOSTNAME:-}" - echo "User: ${DOCLING_USERNAME:-}" - echo "Password: ${DOCLING_PASSWORD:-}" - echo "API (external via Caddy): https://${DOCLING_HOSTNAME:-}" - echo "API (internal): http://docling:5001" - echo "" echo "Web UI: https://${DOCLING_HOSTNAME:-}/ui" echo "API Docs: https://${DOCLING_HOSTNAME:-}/docs" echo "" - echo "Configuration:" - echo " Docker Image: ${DOCLING_IMAGE:-ghcr.io/docling-project/docling-serve:cpu}" echo "" - echo "Main API Endpoint:" - echo " POST /v1/convert/source" - echo " Body: {\"sources\": [{\"kind\": \"http\", \"url\": \"https://example.com/doc.pdf\"}]}" + echo "User: ${DOCLING_USERNAME:-}" + echo "Password: ${DOCLING_PASSWORD:-}" echo "" - echo "Supported formats: PDF, DOCX, PPTX, XLSX, HTML, images" - echo "Output formats: Markdown, JSON, HTML" - echo "GitHub: https://github.com/docling-project/docling-serve" + echo "" + echo "API (external via Caddy): https://${DOCLING_HOSTNAME:-}" + echo "API (internal): http://docling:5001" fi if is_profile_active "gotenberg"; then