How to integrate with ZenML
ZenML integrates with a bunch of tools from the MLOps landscape
zenml <STACK_COMPONENT> flavor register
command and use/test them as a regular custom flavor. E.g., when developing an orchestrator you can use:
src/zenml/integrations/<YOUR_INTEGRATION>/__init__.py
you must now create an new class, which is a subclass of the Integration
class, set some important attributes (NAME
and REQUIREMENTS
), and overwrite the flavors
class method.