Spaces:
Sleeping
Sleeping
Michael Hu
commited on
Commit
·
fe89bd8
1
Parent(s):
6825e46
fix
Browse files- pyproject.toml +2 -2
- requirements.txt +3 -2
pyproject.toml
CHANGED
|
@@ -9,7 +9,7 @@ license = {text = "MIT"}
|
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.10"
|
| 11 |
dependencies = [
|
| 12 |
-
"gradio>=
|
| 13 |
"nltk>=3.8",
|
| 14 |
"librosa>=0.10",
|
| 15 |
"ffmpeg-python>=0.2",
|
|
@@ -25,7 +25,7 @@ dependencies = [
|
|
| 25 |
"nemo_toolkit[asr]",
|
| 26 |
"faster-whisper>=1.1.1",
|
| 27 |
"chatterbox-tts",
|
| 28 |
-
"YouTokenToMe
|
| 29 |
]
|
| 30 |
|
| 31 |
[project.optional-dependencies]
|
|
|
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.10"
|
| 11 |
dependencies = [
|
| 12 |
+
"gradio>=5.25.2",
|
| 13 |
"nltk>=3.8",
|
| 14 |
"librosa>=0.10",
|
| 15 |
"ffmpeg-python>=0.2",
|
|
|
|
| 25 |
"nemo_toolkit[asr]",
|
| 26 |
"faster-whisper>=1.1.1",
|
| 27 |
"chatterbox-tts",
|
| 28 |
+
"YouTokenToMe = { git = "https://github.com/LahiLuk/YouTokenToMe", branch = "main" }"
|
| 29 |
]
|
| 30 |
|
| 31 |
[project.optional-dependencies]
|
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
gradio>=
|
| 2 |
nltk>=3.8
|
| 3 |
librosa>=0.10
|
| 4 |
ffmpeg-python>=0.2
|
|
@@ -13,4 +13,5 @@ ordered-set>=4.1.0
|
|
| 13 |
phonemizer-fork>=3.3.2
|
| 14 |
nemo_toolkit[asr]
|
| 15 |
faster-whisper>=1.1.1
|
| 16 |
-
chatterbox-tts
|
|
|
|
|
|
| 1 |
+
gradio>=5.29.5
|
| 2 |
nltk>=3.8
|
| 3 |
librosa>=0.10
|
| 4 |
ffmpeg-python>=0.2
|
|
|
|
| 13 |
phonemizer-fork>=3.3.2
|
| 14 |
nemo_toolkit[asr]
|
| 15 |
faster-whisper>=1.1.1
|
| 16 |
+
chatterbox-tts
|
| 17 |
+
YouTokenToMe @ git+https://github.com/LahiLuk/YouTokenToMe@main
|