Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
GitHub Actions
commited on
Commit
·
772f43d
1
Parent(s):
8fa1fd3
Sync from GitHub repo
Browse files
models.py
CHANGED
@@ -431,6 +431,7 @@ def insert_initial_models():
|
|
431 |
name="Spark TTS",
|
432 |
model_type=ModelType.TTS,
|
433 |
is_open=False,
|
|
|
434 |
model_url="https://github.com/SparkAudio/Spark-TTS",
|
435 |
),
|
436 |
Model(
|
@@ -483,6 +484,20 @@ def insert_initial_models():
|
|
483 |
is_open=True,
|
484 |
model_url="https://github.com/bytedance/MegaTTS3",
|
485 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
]
|
487 |
conversational_models = [
|
488 |
Model(
|
|
|
431 |
name="Spark TTS",
|
432 |
model_type=ModelType.TTS,
|
433 |
is_open=False,
|
434 |
+
is_active=False, # API stopped working
|
435 |
model_url="https://github.com/SparkAudio/Spark-TTS",
|
436 |
),
|
437 |
Model(
|
|
|
484 |
is_open=True,
|
485 |
model_url="https://github.com/bytedance/MegaTTS3",
|
486 |
),
|
487 |
+
Model(
|
488 |
+
id="minimax-02-hd",
|
489 |
+
name="Hailuo Speech 02 HD",
|
490 |
+
model_type=ModelType.TTS,
|
491 |
+
is_open=True,
|
492 |
+
model_url="http://minimax.io/",
|
493 |
+
),
|
494 |
+
Model(
|
495 |
+
id="minimax-02-turbo",
|
496 |
+
name="Hailuo Speech 02 Turbo",
|
497 |
+
model_type=ModelType.TTS,
|
498 |
+
is_open=True,
|
499 |
+
model_url="http://minimax.io/",
|
500 |
+
),
|
501 |
]
|
502 |
conversational_models = [
|
503 |
Model(
|