in dell_ai/client.py [0:0]
def get_platform(self, platform_id: str) -> "Platform":
"""
Get detailed information about a specific platform.
Args:
platform_id: The platform SKU ID
Returns:
Detailed platform information as a Platform object
Raises:
ResourceNotFoundError: If the platform is not found
AuthenticationError: If authentication fails
APIError: If the API returns an error
"""
from dell_ai import platforms
return platforms.get_platform(self, platform_id)