GitHub Actions commited on
Commit
6eee52e
·
1 Parent(s): 74bc969

Sync from GitHub repo

Browse files
Files changed (2) hide show
  1. models.py +8 -0
  2. tts.py +4 -0
models.py CHANGED
@@ -759,6 +759,14 @@ def insert_initial_models():
759
  is_active=True,
760
  model_url="https://ttsarena.org/",
761
  ),
 
 
 
 
 
 
 
 
762
  ]
763
  conversational_models = [
764
  Model(
 
759
  is_active=True,
760
  model_url="https://ttsarena.org/",
761
  ),
762
+ Model(
763
+ id="vocu",
764
+ name="Vocu V3.0",
765
+ model_type=ModelType.TTS,
766
+ is_open=False,
767
+ is_active=True,
768
+ model_url="https://vocu.ai/",
769
+ ),
770
  ]
771
  conversational_models = [
772
  Model(
tts.py CHANGED
@@ -123,6 +123,10 @@ model_mapping = {
123
  "provider": "parmesan",
124
  "model": "parmesan",
125
  },
 
 
 
 
126
  }
127
  url = "https://tts-agi-tts-router-v2.hf.space/tts"
128
  headers = {
 
123
  "provider": "parmesan",
124
  "model": "parmesan",
125
  },
126
+ "vocu": {
127
+ "provider": "vocu",
128
+ "model": "vocu-balance",
129
+ },
130
  }
131
  url = "https://tts-agi-tts-router-v2.hf.space/tts"
132
  headers = {