Hacker News new | ask | show | jobs
by Rumudiez 3 days ago
I would call that a pipeline, which may be a type of graph, but might have communicated your point more concretely to begin with
1 comments

I called it a graph because really its a DAG (Directed Acyclic Graph) , in my example I kept it simple so there was only one input to every node, but in more advanced use cases you might have a synthesis node that takes in 2 or more inputs making it more akin to an execution graph in Tensorflow for example
DAGs are used in scientific workflows like snakemake. I wonder if such pipeline engines are use in LLM space.