Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cell ¶
type Cell struct {
// Key is the document identity (filesystem-style relative path).
Key string
// Value is the polymorphic content (Text, Json, List, Binary).
Value Gist
// Steps holds named outputs from prior steps (shared across cells).
// Downstream stages reference these via Go templates (e.g., {{.steps.extract}}).
Steps map[string]Gist
// Env holds environment/metadata key-value pairs.
Env map[string]any
}
Cell is the unit of data flowing through the pipeline. It is a reference to a mutable memory location within the workflow's address space. Channels pass *Cell pointers — lightweight, zero-copy.
Click to show internal directories.
Click to hide internal directories.