graflo.architecture.contract.declarations.resource¶
Resource management and processing for graph databases.
This module provides the core resource handling functionality for graph databases. It defines how data resources are processed, transformed, and mapped to graph structures through a system of actors and transformations.
Key Components
- Resource: Main class for resource processing and transformation
- ActorWrapper: Wrapper for processing actors
- ActionContext: Context for processing actions
The resource system allows for
- Data encoding and transformation
- Vertex and edge creation
- Weight management
- Collection merging
- Type casting and validation
- Dynamic vertex-type routing via VertexRouterActor in the pipeline
Example
resource = Resource( ... name="users", ... pipeline=[{"vertex": "user"}, {"edge": {"from": "user", "to": "user"}}], ... encoding=EncodingType.UTF_8 ... ) result = resource(doc)
EdgeInferSpec
¶
Bases: ConfigBaseModel
Selector for controlling inferred edge emission.
Source code in graflo/architecture/contract/declarations/resource.py
Resource
¶
Bases: ConfigBaseModel
Resource configuration and processing.
Represents a data resource that can be processed and transformed into graph structures. Manages the processing pipeline through actors and handles data encoding, transformation, and mapping. Suitable for LLM-generated schema constituents.
Dynamic vertex-type routing is handled by vertex_router steps in the
pipeline (see :class:~graflo.architecture.pipeline.runtime.actor.VertexRouterActor).
Source code in graflo/architecture/contract/declarations/resource.py
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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 | |
edge_config
property
¶
Edge configuration (set by Schema.finish_init).
root
property
¶
Root actor wrapper for the processing pipeline.
vertex_config
property
¶
Vertex configuration (set by Schema.finish_init).
__call__(doc)
¶
Process a document through the resource pipeline.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc
|
dict
|
Document to process |
required |
Returns:
| Type | Description |
|---|---|
defaultdict[GraphEntity, list]
|
defaultdict[GraphEntity, list]: Processed graph entities |
Source code in graflo/architecture/contract/declarations/resource.py
count()
¶
finish_init(vertex_config, edge_config, transforms, *, strict_references=False, dynamic_edge_feedback=False)
¶
Complete resource initialization.
Initializes the resource with vertex and edge configurations, and sets up the processing pipeline. Called by Schema after load.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
vertex_config
|
VertexConfig
|
Configuration for vertices |
required |
edge_config
|
EdgeConfig
|
Configuration for edges |
required |
transforms
|
dict[str, ProtoTransform]
|
Dictionary of available transforms |
required |