Notes
Below delivers the documentation details for Note, the atomical unit of data that flows across a Graphbook pipeline.
-
class graphbook.Note(items: dict = {})
The unit that passes through workflow steps. A Note contains a dictionary of items related to the note.
- Parameters:
items (Dict[str, Any]) – An optional dictionary of items to store in the Note
Examples
d = Note( {"images": [PIL.Image("image_of_dog.png")]} )