Spaces:
Paused
Paused
Fix AXTTS request dict
Browse files
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(
|