"""Workflow plugin: greater than or equal comparison.""" def run(_runtime, inputs): """Check if a >= b.""" a = inputs.get("a") b = inputs.get("b") return {"result": a >= b}