huangyp ff96cb9fd6
Some checks failed
Close inactive issues / close-issues (push) Has been cancelled
tts
2025-02-19 11:42:24 +08:00

18 lines
332 B
Python

import os
import subprocess
import sys
#!/usr/bin/env python
def main():
# Make path relative to this file
script_path = os.path.join(
os.path.dirname(__file__), "../../fish_speech/models/vqgan/inference.py"
)
subprocess.run(["python", script_path] + sys.argv[1:])
if __name__ == "__main__":
main()