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)