Develop a Custom Alerter
Learning how to develop a custom alerter.
Base Abstraction
The base abstraction for alerters is very basic, as it only defines two abstract methods that subclasses should implement:
post()
takes a string, posts it to the desired chat service, and returnsTrue
if the operation succeeded, elseFalse
.ask()
does the same aspost()
, but after sending the message, it waits until someone approves or rejects the operation from within the chat service (e.g., by sending "approve" / "reject" to the bot as a response).ask()
then only returnsTrue
if the operation succeeded and was approved, elseFalse
.
The ask()
method is particularly useful for implementing human-in-the-loop workflows. When implementing this method, you should:
Wait for user responses containing approval keywords (like
"approve"
,"yes"
,"ok"
,"LGTM"
)Wait for user responses containing disapproval keywords (like
"reject"
,"no"
,"cancel"
,"stop"
)Return
True
only when explicit approval is receivedReturn
False
for disapproval, timeout, or any errorsConsider implementing configurable approval/disapproval keywords via parameters
Then base abstraction looks something like this:
from abc import ABC
from typing import Optional
from zenml.stack import StackComponent
from zenml.alerter import BaseAlerterStepParameters
class BaseAlerter(StackComponent, ABC):
"""Base class for all ZenML alerters."""
def post(
self, message: str, params: Optional[BaseAlerterStepParameters]
) -> bool:
"""Post a message to a chat service."""
return True
def ask(
self, question: str, params: Optional[BaseAlerterStepParameters]
) -> bool:
"""Post a message to a chat service and wait for approval."""
return True
Building your own custom alerter
Creating your own custom alerter can be done in four steps:
Create a class that inherits from the
BaseAlerter
and implement thepost()
andask()
methods.import logging from typing import Optional from zenml.alerter import BaseAlerter, BaseAlerterStepParameters class MyAlerter(BaseAlerter): """My alerter class.""" def post( self, message: str, params: Optional[BaseAlerterStepParameters] ) -> bool: """Post a message to a chat service.""" try: # Implement your chat service posting logic here # e.g., send HTTP request to chat API logging.info(f"Posting message: {message}") return True except Exception as e: logging.error(f"Failed to post message: {e}") return False def ask( self, question: str, params: Optional[BaseAlerterStepParameters] ) -> bool: """Post a message to a chat service and wait for approval.""" try: # First, post the question if not self.post(question, params): return False # Define default approval/disapproval options approve_options = ["approve", "yes", "ok", "LGTM"] disapprove_options = ["reject", "no", "cancel", "stop"] # Check if custom options are provided in params if params and hasattr(params, 'approve_msg_options'): approve_options = params.approve_msg_options if params and hasattr(params, 'disapprove_msg_options'): disapprove_options = params.disapprove_msg_options # Wait for response (implement your chat service polling logic) # This is a simplified example - you'd implement actual polling response = self._wait_for_user_response() if response.lower() in [opt.lower() for opt in approve_options]: return True elif response.lower() in [opt.lower() for opt in disapprove_options]: return False else: # Invalid response or timeout return False except Exception as e: print(f"Failed to get approval: {e}") return False def _wait_for_user_response(self) -> str: """Wait for user response - implement based on your chat service.""" # This is where you'd implement the actual waiting logic # e.g., polling your chat service API for new messages return "approve" # Placeholder
If you need to configure your custom alerter, you can also implement a config object.
from zenml.alerter.base_alerter import BaseAlerterConfig class MyAlerterConfig(BaseAlerterConfig): my_param: str
Optionally, you can create custom parameter classes to support configurable approval/disapproval keywords:
from typing import List, Optional from zenml.alerter.base_alerter import BaseAlerterStepParameters class MyAlerterParameters(BaseAlerterStepParameters): """Custom parameters for MyAlerter.""" # Custom approval/disapproval message options approve_msg_options: Optional[List[str]] = None disapprove_msg_options: Optional[List[str]] = None # Any other custom parameters for your alerter custom_channel: Optional[str] = None
Finally, you can bring the implementation and the configuration together in a new flavor object.
from typing import Type, TYPE_CHECKING from zenml.alerter import BaseAlerterFlavor if TYPE_CHECKING: from zenml.stack import StackComponent, StackComponentConfig class MyAlerterFlavor(BaseAlerterFlavor): @property def name(self) -> str: return "my_alerter" @property def config_class(self) -> Type[StackComponentConfig]: from my_alerter_config import MyAlerterConfig return MyAlerterConfig @property def implementation_class(self) -> Type[StackComponent]: from my_alerter import MyAlerter return MyAlerter
Once you are done with the implementation, you can register your new flavor through the CLI. Please ensure you point to the flavor class via dot notation:
zenml alerter flavor register <path.to.MyAlerterFlavor>
For example, if your flavor class MyAlerterFlavor
is defined in flavors/my_flavor.py
, you'd register it by doing:
zenml alerter flavor register flavors.my_flavor.MyAlerterFlavor
ZenML resolves the flavor class by taking the path where you initialized zenml (via zenml init
) as the starting point of resolution. Therefore, please ensure you follow the best practice of initializing zenml at the root of your repository.
If ZenML does not find an initialized ZenML repository in any parent directory, it will default to the current working directory, but usually, it's better to not have to rely on this mechanism and initialize zenml at the root.
Afterward, you should see the new custom alerter flavor in the list of available alerter flavors:
zenml alerter flavor list
It is important to draw attention to when and how these abstractions are coming into play in a ZenML workflow.
The MyAlerterFlavor class is imported and utilized upon the creation of the custom flavor through the CLI.
The MyAlerterConfig class is imported when someone tries to register/update a stack component with the
my_alerter
flavor. Especially, during the registration process of the stack component, the config will be used to validate the values given by the user. AsConfig
objects are inherentlypydantic
objects, you can also add your own custom validators here.The MyAlerter only comes into play when the component is ultimately in use.
The design behind this interaction lets us separate the configuration of the flavor from its implementation. This way we can register flavors and components even when the major dependencies behind their implementation are not installed in our local setting (assuming the MyAlerterFlavor
and the MyAlerterConfig
are implemented in a different module/path than the actual MyAlerter
).

Last updated
Was this helpful?