## Type Handling | JSON type | Output type | Connector | |:---|:---|:---| | `42` (integer) | `INT` | Blue | | `3.14` (float) | `FLOAT` | Teal | | `"hello"` (string) | `STRING` | Pink | | `true` / `false` | `STRING` (`"true"` / `"false"`) | Pink | ## JSON Format Works with flat JSON or `batch_data` arrays: ```json { "batch_data": [ { "sequence_number": 1, "general_prompt": "A cinematic scene...", "seed": 42, "flf": 0.5, "camera": "pan_left", "my_custom_key": "any value" } ] } ``` Without `batch_data`, reads keys directly from the root object. ## License [Apache 2.0](LICENSE)