Skip to content

Commit 8f0b28b

Browse files
author
root
committed
add cosyvoice3
1 parent 04bcadc commit 8f0b28b

16 files changed

Lines changed: 2838 additions & 3 deletions

File tree

runtime/triton_trtllm/client_grpc.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ def get_args():
281281
choices=[
282282
"f5_tts",
283283
"spark_tts",
284+
"cosyvoice3",
284285
"cosyvoice2",
285286
"cosyvoice2_dit"],
286287
help="triton model_repo module name to request",

runtime/triton_trtllm/client_http.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ def get_args():
3737
parser.add_argument(
3838
"--server-url",
3939
type=str,
40-
default="localhost:8000",
40+
default="localhost:18000",
4141
help="Address of the server",
4242
)
4343

4444
parser.add_argument(
4545
"--reference-audio",
4646
type=str,
47-
default="../../example/prompt_audio.wav",
47+
default="./prompt_audio.wav",
4848
help="Path to a single audio file. It can't be specified at the same time with --manifest-dir",
4949
)
5050

@@ -65,9 +65,10 @@ def get_args():
6565
parser.add_argument(
6666
"--model-name",
6767
type=str,
68-
default="spark_tts",
68+
default="cosyvoice3",
6969
choices=[
7070
"f5_tts",
71+
"cosyvoice3",
7172
"spark_tts",
7273
"cosyvoice2"],
7374
help="triton model_repo module name to request",

0 commit comments

Comments
 (0)