def list_apps()

in dell_ai/apps.py [0:0]


def list_apps(client: "DellAIClient") -> List[str]:
    """
    Get a list of all available application names.

    Args:
        client: The Dell AI client

    Returns:
        A list of application names

    Raises:
        AuthenticationError: If authentication fails
        APIError: If the API returns an error
    """
    response = client._make_request("GET", constants.APPS_ENDPOINT)
    return response.get("apps", [])