diff --git a/tfx/orchestration/experimental/core/constants.py b/tfx/orchestration/experimental/core/constants.py index fc0aa06e344..84c7163a3b0 100644 --- a/tfx/orchestration/experimental/core/constants.py +++ b/tfx/orchestration/experimental/core/constants.py @@ -27,6 +27,9 @@ COMPONENT_GENERATED_ALERTS_KEY = '__component_generated_alerts__' IMPORTER_NODE_TYPE = 'tfx.dsl.components.common.importer.Importer' +INTERNAL_IMPORTER_NODE_TYPE = ( + 'tfx.dsl.components.common.importer.InternalImporter' +) RESOLVER_NODE_TYPE = 'tfx.dsl.components.common.resolver.Resolver' MANUAL_NODE_TYPE = 'tfx.dsl.components.common.manual_node.ManualNode' SUBPIPELINE_NODE_TYPE = 'tfx.orchestration.pipeline.Pipeline'