InferenceType Enum
Your project already uses InferenceType as a bitmask in editor code (see AvailableInferenceTypesForBlockId bitwise checks), so we rely on that. If your enum is missing the [Flags] attribute, add it there (values stay the same).
| Member | Value |
|---|
None | 0 |
Cloud | 1 << 0 |
LocalServer | 1 << 1 |
OnDevice | 1 << 2 |