more experimental voices

This commit is contained in:
YaoyaoChang
2025-12-16 04:21:09 -08:00
parent d295d1e1d0
commit 4adbe76674
8 changed files with 94 additions and 27 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import argparse, os, uvicorn
def main():
p = argparse.ArgumentParser()
p.add_argument("--port", type=int, default=3000)
p.add_argument("--model_path", type=str, default="default_model")
p.add_argument("--model_path", type=str, default="microsoft/VibeVoice-Realtime-0.5B")
p.add_argument("--device", type=str, default="cuda", choices=["cpu", "cuda", "mpx", "mps"])
p.add_argument("--reload", action="store_true", help="Reload the model or not")
args = p.parse_args()