File size: 277 Bytes
dce7eca
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import requests

def test_health():
    try:
        response = requests.get("http://localhost:7860/")
        print(f"Health check: {response.json()}")
    except Exception as e:
        print(f"Server not running or error: {e}")

if __name__ == "__main__":
    test_health()