/** * Enum specifying the adaptive recognition mode for label definitions. * Adaptive recognition uses cloud-based processing as a backup for on-device processing. */ declare enum AdaptiveRecognitionMode { /** * Disable adaptive recognition. Only on-device processing is used. * This is the default mode. */ Off = "off", /** * Automatic strategy selection. The system will determine the best mix * of on-device and cloud processing based on the current conditions. */ Auto = "auto", /** * The system prioritizes on-device processing, but cloud-based processing * will be used when possible — even in some circumstances where Auto mode * would skip it. */ On = "on" } export { AdaptiveRecognitionMode };