Uploaded sanitized BC250/ROCm Repository.

This commit is contained in:
Fabian
2026-08-20 00:45:43 +02:00
parent 7d2184f1e8
commit d7d22e93b3
678 changed files with 65963 additions and 1 deletions
@@ -0,0 +1,13 @@
#!/usr/bin/env python3
"""Scan all imports in qwen3-tts to find missing pip packages."""
import subprocess, sys
result = subprocess.run(
["docker", "run", "--rm", "--entrypoint", "bash", "sudx/qwen3-tts:latest", "-c",
"grep -rh '^import\\|^from' /opt/qwen3-tts/qwen3_tts_gguf/ 2>/dev/null | "
"grep -v __pycache__ | sort -u"],
capture_output=True, text=True
)
print(result.stdout)
if result.stderr:
print("STDERR:", result.stderr, file=sys.stderr)