Reactions from ranked influencers
2 posts@hwchase17 Nobody knows what it is.
So i didn’t really know what graph engineering is, and i still don’t really… but it’s basically just langgraph?
what's the difference between a loop and a graph? (marketing edition) both are ways to run an agent, the difference is who decides the path, the agent or you. a loop still starts with you. you set the goal, the brief, and the bar it has to clear. what the agent owns is the path. take writing an SEO article: hand it the brief and it drafts, reads the draft back against that brief, rewrites the weak parts, checks again, and keeps circling until it clears the bar. the one thing you did not write is the step-by-step it took to get there. a graph is you drawing the steps and the routes between them ahead of time. same article, but now you set the map: research the keyword and the competitors ranking for it. draft from what you find. score that draft against your rubric. if it clears, add the internal links and publish. if it misses, back to the draft. the agent still decides how to handle each step, it just travels the routes you laid down. the shape of this has a name, a state machine. every node is a state the work can be in, and a check at each one decides where it goes next, forward when it clears or back to an earlier node when it misses. if you have built a workflow in n8n, you have already drawn one. nodes wired together, branches that fire on a condition, a step that loops until it clears, that picture is a graph. an agent graph is the same shape, the nodes hold agents doing the work instead of single api calls. the way I think about it, a graph is a map of loops and checkpoints. some nodes run once, others are their own loop where the agent works something out, and the checkpoints between them read the result and route the work. you keep laying down nodes and checkpoints until the map reliably gives you the output you want. the vault accelerator I run at my agency is one of these maps, 3 sessions that hand off in a fixed order: > research session: reads our company brain and past campaign results, pulls in competitor and market context, and builds the cohort we go after > landing page session: takes that research and builds the page from it > content session: uses the research and the page to write the copy, illustrations, and slides for the live sessions we run inside the content session runs a loop, a critic scores each draft against a rubric and sends it back until it clears the bar. that is one node on the map, the checkpoints between the sessions carry the work from one to the next a graph earns its extra setup on anything you run every week: > validation gates the work cannot skip > a fixed set of routes the job can take > a clear failure point, you see the exact step something broke on a loop on its own is enough for the work you only do once, where you don't know the path yet, let the agent find it. graphs earn their place on the jobs you repeat, the content pipeline, the SEO and AEO funnel step by step, the vault accelerator once the map works you reuse it, feed it the next cohort and the whole pipeline runs again past the loop, the next thing you design is the map it runs inside.
Combined views
61.3K
2 posts, first seen 20h ago