This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ROCm-Research-Archive/_TestScripts/Scripts and Tests/_hcheck.py
T
2026-08-20 00:45:43 +02:00

7 lines
182 B
Python

import urllib.request
try:
r = urllib.request.urlopen("http://qwen3-tts:8072/health", timeout=3)
print("OK:", r.read().decode())
except Exception as e:
print("FAIL:", e)