graflo.architecture.graph_types.context¶
Extraction and assembly runtime contexts.
ActionContext
¶
Bases: ExtractionContext
Backward-compatible extraction+assembly context.
Kept for existing callers/tests while Wave 5 migrates call surfaces.
Source code in graflo/architecture/graph_types/context.py
AssemblyContext
¶
Bases: ConfigBaseModel
Assembly-phase context built from extraction outputs.
Source code in graflo/architecture/graph_types/context.py
EdgeIntent
¶
Bases: ConfigBaseModel
Typed edge assembly request emitted during extraction.
Source code in graflo/architecture/graph_types/context.py
ExtractionContext
¶
Bases: ConfigBaseModel
Extraction-phase context.
Attributes:
| Name | Type | Description |
|---|---|---|
acc_vertex |
Any
|
Local accumulation of extracted vertices |
transform_buffer |
Any
|
Buffer for transform payloads (defaultdict[LocationIndex, list]) |
obs_buffer |
Any
|
Merged observation context per location (dict[LocationIndex, dict]) |
vertex_observations |
list[VertexObservation]
|
Explicit extracted vertex observations |
transform_observations |
list[TransformObservation]
|
Explicit extracted transform observations |
edge_intents |
list[EdgeIntent]
|
Explicit edge intents for assembly phase |
Source code in graflo/architecture/graph_types/context.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | |
GraphAssemblyResult
¶
Bases: ConfigBaseModel
Result of graph assembly phase.
Source code in graflo/architecture/graph_types/context.py
ResourceCastResult
¶
Bases: ConfigBaseModel
Outcome of casting one document through a resource pipeline.
Source code in graflo/architecture/graph_types/context.py
TransformCastFailure
¶
Bases: ConfigBaseModel
One transform step that failed during extraction (tolerance mode).
Source code in graflo/architecture/graph_types/context.py
TransformObservation
¶
Bases: ConfigBaseModel
Typed transform observation emitted during extraction.
Source code in graflo/architecture/graph_types/context.py
VertexObservation
¶
Bases: ConfigBaseModel
Typed vertex observation emitted during extraction.