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