Skip to content

Commit 7a4516d

Browse files
Expose NumberInRange operator in workflow builder UI
The (Number) in range operator was already implemented in the evaluation engine and BinaryStatement union but was not included in the introspection export, making it invisible to the workflow builder UI. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent dd5cfa5 commit 7a4516d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • inference/core/workflows/core_steps/common/query_language/introspection

inference/core/workflows/core_steps/common/query_language/introspection/core.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
NotEquals,
1717
NumberGreater,
1818
NumberGreaterEqual,
19+
NumberInRange,
1920
NumberLower,
2021
NumberLowerEqual,
2122
OperationsChain,
@@ -104,6 +105,7 @@ def prepare_operators_descriptions() -> List[OperatorDescription]:
104105
NumberLower,
105106
NumberGreaterEqual,
106107
NumberGreater,
108+
NumberInRange,
107109
NotEquals,
108110
Equals,
109111
Exists,

0 commit comments

Comments
 (0)