Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
GitHub Actions
commited on
Commit
·
edebf80
1
Parent(s):
e4f27ba
Sync from GitHub repo
Browse files
models.py
CHANGED
@@ -710,6 +710,14 @@ def insert_initial_models():
|
|
710 |
is_active=True,
|
711 |
model_url="https://ttsarena.org/",
|
712 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
713 |
]
|
714 |
conversational_models = [
|
715 |
Model(
|
|
|
710 |
is_active=True,
|
711 |
model_url="https://ttsarena.org/",
|
712 |
),
|
713 |
+
Model(
|
714 |
+
id="wordcab",
|
715 |
+
name="Wordcab TTS",
|
716 |
+
model_type=ModelType.TTS,
|
717 |
+
is_open=False,
|
718 |
+
is_active=True,
|
719 |
+
model_url="https://wordcab.com/",
|
720 |
+
),
|
721 |
]
|
722 |
conversational_models = [
|
723 |
Model(
|
tts.py
CHANGED
@@ -99,6 +99,10 @@ model_mapping = {
|
|
99 |
"provider": "inworld",
|
100 |
"model": "inworld",
|
101 |
},
|
|
|
|
|
|
|
|
|
102 |
}
|
103 |
url = "https://tts-agi-tts-router-v2.hf.space/tts"
|
104 |
headers = {
|
|
|
99 |
"provider": "inworld",
|
100 |
"model": "inworld",
|
101 |
},
|
102 |
+
"wordcab": {
|
103 |
+
"provider": "wordcab",
|
104 |
+
"model": "wordcab",
|
105 |
+
},
|
106 |
}
|
107 |
url = "https://tts-agi-tts-router-v2.hf.space/tts"
|
108 |
headers = {
|