junmo commited on
Commit
652b285
·
1 Parent(s): bdf6e63

Fix AXTTS request dict

Browse files
Files changed (1) hide show
  1. tts.py +2 -1
tts.py CHANGED
@@ -712,7 +712,8 @@ def predict_ax_tts(text: str, voice_id: str) -> str:
712
  req_dict = {
713
  "voice": voice_id,
714
  "text": text,
715
- "text_chunk_num": 50
 
716
  }
717
 
718
  response = requests.post(
 
712
  req_dict = {
713
  "voice": voice_id,
714
  "text": text,
715
+ "text_chunk_num": 50,
716
+ "poc_id": "tts_arena"
717
  }
718
 
719
  response = requests.post(