I'm working on a globus flow involving a compute component. The compute piece requires the user to provide a detection threshold between 0.0 and 1.0. I was trying to set that up in the schema as
"confidence": {
"type": "number",
"default": 0.5,
"minimum": 0.0,
"maximum": 1.0,
"title": "Confidence threshold"
}
But when I try to run the flow it says to select a valid value, the two nearest valid values are 0 and 1.
Any guidance on how to set this up is greatly appreciated