feat: 完成 faster-whisper 转写节点

This commit is contained in:
cat-shark
2026-08-08 21:04:19 +08:00
commit 206275f7d6
8 changed files with 1074 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
[project]
name = "wov-node-whisper"
version = "0.1.0"
description = "WOV faster-whisper ASR node"
requires-python = ">=3.11"
dependencies = [
"faster-whisper>=1.2.1",
"wov-sdk",
]
[tool.uv.sources]
wov-sdk = { path = "../wov-sdk" }
[dependency-groups]
dev = ["pytest", "pytest-cov"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "--cov=wov_node_whisper --cov-report=term-missing --cov-fail-under=100"
[tool.setuptools]
packages = ["wov_node_whisper"]