d843836fae
Extracted from: https://github.com/temiroff/Blacknode.git Score: 1.0
1.9 KiB
1.9 KiB
name, version, description, inputs, steps, outputs, tags, metadata
| name | version | description | inputs | steps | outputs | tags | metadata | |||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| text-concatenation-pipeline | 1.0.0 | Combine two text inputs into a single output string using a Blacknode node graph. |
|
|
|
|
text-concatenation-pipeline
Combine two text inputs into a single output string using a Blacknode node graph.
Steps
- Instantiate a Text node with parameter value set to text_a
- Instantiate a Text node with parameter value set to text_b
- Instantiate a Concat node with no parameters
- Instantiate an Output node
- Connect output port 'value' of first Text node to input port 'a' of Concat node
- Connect output port 'value' of second Text node to input port 'b' of Concat node
- Connect output port 'value' of Concat node to input port 'value' of Output node
- Execute graph by cooking the Output node's 'value' port to obtain result
Inputs
- text_a (string)
- text_b (string)
Outputs
- concatenated_text (string)
Failure Modes
- One or both text inputs missing or non-string
- Invalid node connections (port mismatch)
- Runtime error during graph execution
Source
Extracted from: https://github.com/temiroff/Blacknode.git Confidence: 0.95