mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
fix: add mediapipe to upscale-enhance bundle for face enhancement
The enhance-faces tool requires MediaPipe for face detection, but the upscale-enhance feature bundle did not include mediapipe in its pip packages. Users who installed only the upscale-enhance bundle got "Face detection requires MediaPipe" errors. Added mediapipe to both amd64 and arm64 package lists, matching the pattern used by the face-detection and photo-restoration bundles. Also added feature-manifest.test.ts with 25 tests validating bundle dependency completeness to prevent similar missing-dependency bugs. Closes #129
This commit is contained in:
@@ -139,9 +139,10 @@
|
||||
"amd64": [
|
||||
"torch==2.7.0+cu126 torchvision==0.22.0+cu126 --index-url https://download.pytorch.org/whl/cu126",
|
||||
"lpips",
|
||||
"realesrgan==0.3.0"
|
||||
"realesrgan==0.3.0",
|
||||
"mediapipe==0.10.21"
|
||||
],
|
||||
"arm64": ["lpips", "realesrgan==0.3.0"]
|
||||
"arm64": ["lpips", "realesrgan==0.3.0", "mediapipe==0.10.18"]
|
||||
},
|
||||
"pipFlags": {
|
||||
"codeformer-pip==0.0.4": "--no-deps"
|
||||
|
||||
Reference in New Issue
Block a user