Commit 5a54cb9
authored
feat(LLMCall): BREAKING CHANGE Add support for LLM Executor (#18)
Include fixes for HTTP Executor
Updated tests and snapshot schema
Updated schema.json
Updated documentation
**Type System Unification:**
- Replace separate INT and FLOAT types with unified NUM type
- Update ValueType and InputType enums in schema.py
- Implement smart num parsing: returns int for whole numbers, float for
decimals
- Migrate all 74 workflow files from type: int/float to type: num
- Update type coercion logic in executors_core.py
- Regenerate schema.json with new type definitions
**Bug Fix:**
- Fix composition-output-passing workflow bug
- Replace bash arithmetic $((...)) with Python for proper float handling
- Child calculator now correctly processes float operations
- Verified: 10 * 5 = 50, then 50 + 5 = 55 (was 50 before)
**Updates:**
- Update README.md and CLAUDE.md documentation
- Regenerate 68 test snapshots with correct type handling
- Add 4 new workflow output type test cases
- All 34/35 workflows passing (1 paused as expected)
**BREAKING CHANGE:**
- Workflow YAML files using `type: int` or `type: float` should migrate
to `type: num`122 files changed
Lines changed: 3392 additions & 6661 deletions
File tree
- src/workflows_mcp
- engine
- templates
- ci
- files
- github
- git
- node
- python
- tdd
- testing
- tools
- catalog
- core
- providers
- tests
- snapshots
- workflows
- core
- block-status
- composition
- conditionals
- dag-execution
- file-operations
- http-operations
- secrets
- state-management
- variable-resolution
- integration
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
211 | 211 | | |
212 | 212 | | |
213 | 213 | | |
214 | | - | |
| 214 | + | |
215 | 215 | | |
216 | 216 | | |
217 | 217 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| 73 | + | |
73 | 74 | | |
74 | 75 | | |
75 | 76 | | |
| |||
114 | 115 | | |
115 | 116 | | |
116 | 117 | | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
117 | 159 | | |
118 | 160 | | |
119 | 161 | | |
| |||
184 | 226 | | |
185 | 227 | | |
186 | 228 | | |
187 | | - | |
| 229 | + | |
| 230 | + | |
| 231 | + | |
| 232 | + | |
188 | 233 | | |
189 | 234 | | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
| 238 | + | |
| 239 | + | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
| 247 | + | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
190 | 256 | | |
191 | 257 | | |
192 | 258 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
0 commit comments