File size: 369 Bytes
2ab0040
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from gradio_client import Client
import os

def check_robys_api():
    print("Checking Robys01/Face-Aging API structure...")
    try:
        client = Client("Robys01/Face-Aging")
        print("\n--- DETAILED API VIEW ---")
        client.view_api()
    except Exception as e:
        print(f"Failed to connect: {e}")

if __name__ == "__main__":
    check_robys_api()