orkes.graph.NodeTrace#

pydantic model orkes.graph.NodeTrace[source]#

Represents the trace of a single node’s execution within the graph. It captures key information about the node for logging, debugging, and visualization purposes.

node_name#

The name of the node.

Type:

str

node_id#

The unique identifier of the node.

Type:

str

node_description#

A description of the node’s function. Defaults to None.

Type:

Optional[str]

meta#

A dictionary for storing any additional metadata related to the node, such as its type or properties.

Type:

dict

Fields:
  • meta (dict)

  • node_description (str | None)

  • node_id (str)

  • node_name (str)

field meta: dict [Required]#
field node_description: str | None = None#
field node_id: str [Required]#
field node_name: str [Required]#