Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
GitHub Actions
commited on
Commit
·
d50d3f8
1
Parent(s):
7359a65
Sync from GitHub repo
Browse files
models.py
CHANGED
@@ -669,6 +669,14 @@ def insert_initial_models():
|
|
669 |
is_active=False, # NOTE: Waiting to receive a pool of voices
|
670 |
model_url="https://fish.audio/",
|
671 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
Model(
|
673 |
id="async-1",
|
674 |
name="CastleFlow v1.0",
|
|
|
669 |
is_active=False, # NOTE: Waiting to receive a pool of voices
|
670 |
model_url="https://fish.audio/",
|
671 |
),
|
672 |
+
Model(
|
673 |
+
id="chatterbox",
|
674 |
+
name="Chatterbox",
|
675 |
+
model_type=ModelType.TTS,
|
676 |
+
is_open=False,
|
677 |
+
is_active=True,
|
678 |
+
model_url="https://www.resemble.ai/chatterbox/",
|
679 |
+
),
|
680 |
Model(
|
681 |
id="async-1",
|
682 |
name="CastleFlow v1.0",
|
tts.py
CHANGED
@@ -91,6 +91,10 @@ model_mapping = {
|
|
91 |
"provider": "nls",
|
92 |
"model": "nls-1",
|
93 |
},
|
|
|
|
|
|
|
|
|
94 |
}
|
95 |
url = "https://tts-agi-tts-router-v2.hf.space/tts"
|
96 |
headers = {
|
|
|
91 |
"provider": "nls",
|
92 |
"model": "nls-1",
|
93 |
},
|
94 |
+
"chatterbox": {
|
95 |
+
"provider": "chatterbox",
|
96 |
+
"model": "chatterbox",
|
97 |
+
},
|
98 |
}
|
99 |
url = "https://tts-agi-tts-router-v2.hf.space/tts"
|
100 |
headers = {
|