import osfrom woodwide import WoodWideclient = WoodWide( api_key=os.environ.get("WOOD_WIDE_AI_API_KEY"), # This is the default and can be omitted)model_publics = client.api.models.list()print(model_publics)
Retrieves a list of all models associated with the current user. Returns model metadata including ID, type, status, and creation time.
GET
/
api
/
models
Python
Copy
Ask AI
import osfrom woodwide import WoodWideclient = WoodWide( api_key=os.environ.get("WOOD_WIDE_AI_API_KEY"), # This is the default and can be omitted)model_publics = client.api.models.list()print(model_publics)