Source code for kappa_sdk.model_action_enum
from enum import Enum
[docs]
class ModelActionEnum(Enum):
    """ Model action enumeration.
    An enumeration of model actions (e.g. model generation, improve).
    """
    model_generation = "ModelGeneration"
    """ The "model generation" action.
    Represents the action of generating a new model.
    """
    improve = "Improve"
    """ The "improve" action.
    Represents the action of improving or optimizing an existing model.
    """