nemo_microservices.data_designer.config.column_types#
Module Contents#
Functions#
Return True if the column type is an LLM-generated column. |
|
Return True if the column type is used in the workflow execution DAG. |
|
Create a Data Designer column config object from kwargs. |
|
Return the preferred display order of the column types. |
Data#
API#
- nemo_microservices.data_designer.config.column_types.COLUMN_TYPE_EMOJI_MAP#
None
- nemo_microservices.data_designer.config.column_types.ColumnConfigT: typing_extensions.TypeAlias#
None
- nemo_microservices.data_designer.config.column_types.DataDesignerColumnType#
‘create_str_enum_from_discriminated_type_union(…)’
- nemo_microservices.data_designer.config.column_types.column_type_is_llm_generated(
- column_type: Union[str, nemo_microservices.data_designer.config.column_types.DataDesignerColumnType],
Return True if the column type is an LLM-generated column.
- nemo_microservices.data_designer.config.column_types.column_type_used_in_execution_dag(
- column_type: Union[str, nemo_microservices.data_designer.config.column_types.DataDesignerColumnType],
Return True if the column type is used in the workflow execution DAG.
- nemo_microservices.data_designer.config.column_types.get_column_config_from_kwargs(
- name: str,
- column_type: nemo_microservices.data_designer.config.column_types.DataDesignerColumnType,
- **kwargs,
Create a Data Designer column config object from kwargs.
Args: name: Name of the column. column_type: Type of the column. **kwargs: Keyword arguments to pass to the column constructor.
Returns: Data Designer column object of the appropriate type.
- nemo_microservices.data_designer.config.column_types.get_column_display_order() list[nemo_microservices.data_designer.config.column_types.DataDesignerColumnType]#
Return the preferred display order of the column types.
- nemo_microservices.data_designer.config.column_types.plugin_manager#
‘PluginManager(…)’