def list_models()

in dell_ai/client.py [0:0]


    def list_models(self) -> List[str]:
        """
        Get a list of all available model IDs.

        Returns:
            A list of model IDs in the format "organization/model_name"

        Raises:
            AuthenticationError: If authentication fails
            APIError: If the API returns an error
        """
        from dell_ai import models

        return models.list_models(self)