-- Simplified Graph Structure:
Moved all conditional edge logic into a node function.
This change reduces redundancy and makes the graph structure easier to understand and maintain.
-- ASCII Visualization:
Integrated ASCII visualization for each node execution.
Utilized the dot_to_ascii function to convert DOT graph representations into ASCII art.
This enhancement provides a clear, textual representation of the graph's state, aiding in debugging and understanding the flow.
-- Simplified Graph Structure: Moved all conditional edge logic into a node function. This change reduces redundancy and makes the graph structure easier to understand and maintain. -- ASCII Visualization: Integrated ASCII visualization for each node execution. Utilized the dot_to_ascii function to convert DOT graph representations into ASCII art. This enhancement provides a clear, textual representation of the graph's state, aiding in debugging and understanding the flow.