in dell_ai/platforms.py [0:0]
def list_platforms(client: "DellAIClient") -> List[str]:
"""
Get a list of all available platform SKU IDs.
Args:
client: The Dell AI client
Returns:
A list of platform SKU IDs
Raises:
AuthenticationError: If authentication fails
APIError: If the API returns an error
"""
response = client._make_request("GET", constants.PLATFORMS_ENDPOINT)
return response.get("skus", [])