From 095679b8c67156ecd362a8cb90d68fbedf3af637 Mon Sep 17 00:00:00 2001 From: Battleplus <3559424769@qq.com> Date: Sat, 22 Aug 2026 00:24:13 +0800 Subject: [PATCH] fix: add pypdf to Docker requirements for PDFContentScrapingStrategy Docker image was missing pypdf dependency, causing PDFContentScrapingStrategy to fail at runtime. Added pypdf>=5.0.0 to deploy/docker/requirements.txt. Fixes #2127 Signed-off-by: Battleplus <3559424769@qq.com> --- deploy/docker/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/docker/requirements.txt b/deploy/docker/requirements.txt index 212fcf036..224f50ca6 100644 --- a/deploy/docker/requirements.txt +++ b/deploy/docker/requirements.txt @@ -14,3 +14,4 @@ PyJWT==2.10.1 mcp>=1.18.0 websockets>=15.0.1 httpx[http2]>=0.27.2 +pypdf>=5.0.0