Platform
ScaiWave ScaiGrid ScaiCore ScaiBot ScaiDrive ScaiKey Modellen Tools & Services
Oplossingen
Organisaties Ontwikkelaars Internet Service Providers Managed Service Providers AI-in-a-Box
Kenniscentrum
Ondersteuning Documentation Blog Downloads
Bedrijf
Over ons Onderzoek Vacatures Investeren Contact
Inloggen

Pipeline operators

Operator Name Description
|> Pipe Sequential: output of left becomes input of right
|?> Conditional Pipe Skip right if condition is false
|*> Parallel Pipe Fan-out to multiple, merge results
|~> Loop Pipe Repeat until condition or max iterations
scaicore
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
// Sequential
content = draft |> enrich |> polish

// Conditional
content = draft |?> (needs_images) generate_images |> polish

// Parallel fan-out
content = draft |*> [format_twitter, format_linkedin], merge = package

// Loop until quality passes
content = draft |~> refine_cycle, until = quality_passes, max = 3

Updated 2026-05-17 08:59:18 View source (.md) rev 1