Spaces:
Build error
Build error
GitHub Actions commited on
Commit ·
cf17ad1
1
Parent(s): efe21f5
Sync from GitHub repo
Browse files
models.py
CHANGED
|
@@ -751,6 +751,14 @@ def insert_initial_models():
|
|
| 751 |
is_active=True,
|
| 752 |
model_url="https://build.nvidia.com/nvidia/magpie-tts-multilingual",
|
| 753 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 754 |
Model(
|
| 755 |
id="parmesan",
|
| 756 |
name="Parmesan",
|
|
|
|
| 751 |
is_active=True,
|
| 752 |
model_url="https://build.nvidia.com/nvidia/magpie-tts-multilingual",
|
| 753 |
),
|
| 754 |
+
Model(
|
| 755 |
+
id="magpie-rp",
|
| 756 |
+
name="Magpie Research Preview",
|
| 757 |
+
model_type=ModelType.TTS,
|
| 758 |
+
is_open=False,
|
| 759 |
+
is_active=True,
|
| 760 |
+
model_url="https://github.com/NVIDIA-NeMo/NeMo",
|
| 761 |
+
),
|
| 762 |
Model(
|
| 763 |
id="parmesan",
|
| 764 |
name="Parmesan",
|
tts.py
CHANGED
|
@@ -131,6 +131,10 @@ model_mapping = {
|
|
| 131 |
"provider": "neuphonic",
|
| 132 |
"model": "neutts",
|
| 133 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
}
|
| 135 |
url = "https://tts-agi-tts-router-v2.hf.space/tts"
|
| 136 |
headers = {
|
|
|
|
| 131 |
"provider": "neuphonic",
|
| 132 |
"model": "neutts",
|
| 133 |
},
|
| 134 |
+
"magpie-rp": {
|
| 135 |
+
"provider": "magpie-rp",
|
| 136 |
+
"model": "magpietts_research",
|
| 137 |
+
},
|
| 138 |
}
|
| 139 |
url = "https://tts-agi-tts-router-v2.hf.space/tts"
|
| 140 |
headers = {
|