Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ COPY pyproject.toml setup.py README.md ./
COPY src ./src
# Inject console dist from build stage (repo does not commit dist).
COPY --from=console-builder /app/console/dist/ ./src/copaw/console/
RUN pip install --no-cache-dir .
RUN pip install --no-cache-dir '.[ollama]'

# Init working dir with default config.json and HEARTBEAT.md (build time).
RUN copaw init --defaults --accept-security
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ dependencies = [
"aiofiles>=24.1.0",
"paho-mqtt>=2.0.0",
"matrix-nio>=0.24.0",
"defusedxml>=0.7.1",
"lxml>=5.0.0",
"openpyxl>=3.1.0",
"pdf2image>=1.16.0",
"pdfplumber>=0.10.0",
"pypdf>=4.0.0",
"python-frontmatter>=1.1.0",
]

[tool.setuptools.dynamic]
Expand Down
Loading