Write the specs
Defining the Blueprint of Your Workflow
models: - name: image_classifier_1 id: 67890 - name: object_detector_1 id: 12345
- name: closing_read
entries:
- name: image_input
type: image # Entries types can be: str/int/float/bool/image/file
context_validation:
name: closing_read_context
tasks:
- name: closing_read_serial_number_value
type: str # Tasks types can be: str/int/float/bool
regions: true
- name: closing_read_serial_number_valid
type: bool
default_value: False #Here if this task raises a TaskConformityError, it will still return the default value.
- name: closing_read_meter_read_value
type: str
regions: true
- name: closing_read_meter_read_valid
type: boolWas this helpful?