feat(tools): 2.0 phase 5 wave 5b - ai pool: ocr-pdf, transcription, background composites (5 tools) (#226)

This commit is contained in:
SnapOtter
2026-06-13 10:19:47 +08:00
parent 6e1b9865f1
commit 51666cdd5f
59 changed files with 5423 additions and 611 deletions
+15 -2
View File
@@ -26,7 +26,13 @@ export const FEATURE_BUNDLES: Record<string, FeatureBundleInfo> = {
name: "Background Removal",
description: "Remove image backgrounds with AI",
estimatedSize: "4-5 GB",
enablesTools: ["remove-background", "passport-photo", "transparency-fixer"],
enablesTools: [
"remove-background",
"passport-photo",
"transparency-fixer",
"background-replace",
"blur-background",
],
},
"face-detection": {
id: "face-detection",
@@ -61,7 +67,14 @@ export const FEATURE_BUNDLES: Record<string, FeatureBundleInfo> = {
name: "OCR",
description: "Extract text from images",
estimatedSize: "3-4 GB",
enablesTools: ["ocr"],
enablesTools: ["ocr", "ocr-pdf"],
},
transcription: {
id: "transcription",
name: "Transcription",
description: "Speech to text for audio and video (subtitles)",
estimatedSize: "~600 MB",
enablesTools: ["transcribe-audio", "auto-subtitles"],
},
};