From 2b2891bd79dcfa51d84f6aa22a17fa8f1455a8e4 Mon Sep 17 00:00:00 2001 From: Ryan Chen Date: Thu, 2 Oct 2025 20:34:59 -0400 Subject: [PATCH] Fix and add missing dependencies to pyproject.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix dotenv package name to python-dotenv - Add pillow for image processing - Add pymupdf for PDF handling 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1431e9c..92084cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,10 +6,12 @@ readme = "README.md" requires-python = ">=3.13" dependencies = [ "chromadb>=1.1.0", - "dotenv>=0.9.9", + "python-dotenv>=1.0.0", "flask>=3.1.2", "httpx>=0.28.1", "ollama>=0.6.0", "openai>=2.0.1", "pydantic>=2.11.9", + "pillow>=10.0.0", + "pymupdf>=1.24.0", ]