feat(06-01): add yt-dlp and anthropic dependencies

- Add yt-dlp>=2025.0.0 and anthropic>=0.40.0 to pyproject.toml
- Wire ANTHROPIC_API_KEY env var in docker-compose.prod.yml (empty default)
- Rebuilt Docker image, both packages importable in container
This commit is contained in:
Claude
2026-04-07 11:35:33 +00:00
parent 57bd91d4e7
commit 165cdb6f23
2 changed files with 3 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ services:
environment: environment:
HOST: 0.0.0.0 HOST: 0.0.0.0
PORT: "8000" PORT: "8000"
ANTHROPIC_API_KEY: "${ANTHROPIC_API_KEY:-}"
volumes: volumes:
- ./shows:/app/shows - ./shows:/app/shows
- ./devices.json:/app/devices.json - ./devices.json:/app/devices.json

View File

@@ -17,6 +17,8 @@ dependencies = [
"numpy>=1.26.0", "numpy>=1.26.0",
"librosa>=0.10.0", "librosa>=0.10.0",
"python-multipart>=0.0.9", "python-multipart>=0.0.9",
"yt-dlp>=2025.0.0",
"anthropic>=0.40.0",
] ]
[project.optional-dependencies] [project.optional-dependencies]