Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
GitHub Actions
commited on
Commit
·
388dd40
1
Parent(s):
e494df6
Sync from GitHub repo
Browse files
models.py
CHANGED
|
@@ -686,6 +686,14 @@ def insert_initial_models():
|
|
| 686 |
is_active=True,
|
| 687 |
model_url="https://www.resemble.ai/chatterbox/",
|
| 688 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 689 |
Model(
|
| 690 |
id="async-1",
|
| 691 |
name="CastleFlow v1.0",
|
|
|
|
| 686 |
is_active=True,
|
| 687 |
model_url="https://www.resemble.ai/chatterbox/",
|
| 688 |
),
|
| 689 |
+
Model(
|
| 690 |
+
id="inworld",
|
| 691 |
+
name="Inworld TTS",
|
| 692 |
+
model_type=ModelType.TTS,
|
| 693 |
+
is_open=False,
|
| 694 |
+
is_active=True,
|
| 695 |
+
model_url="https://inworld.ai/",
|
| 696 |
+
),
|
| 697 |
Model(
|
| 698 |
id="async-1",
|
| 699 |
name="CastleFlow v1.0",
|
tts.py
CHANGED
|
@@ -95,6 +95,10 @@ model_mapping = {
|
|
| 95 |
"provider": "chatterbox",
|
| 96 |
"model": "chatterbox",
|
| 97 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
| 98 |
}
|
| 99 |
url = "https://tts-agi-tts-router-v2.hf.space/tts"
|
| 100 |
headers = {
|
|
|
|
| 95 |
"provider": "chatterbox",
|
| 96 |
"model": "chatterbox",
|
| 97 |
},
|
| 98 |
+
"inworld": {
|
| 99 |
+
"provider": "inworld",
|
| 100 |
+
"model": "inworld",
|
| 101 |
+
},
|
| 102 |
}
|
| 103 |
url = "https://tts-agi-tts-router-v2.hf.space/tts"
|
| 104 |
headers = {
|