Hi, In this case, you simply need to create a sequential chain of nodes, with each node’s result passed into the next node. There’s no need to retain the previous conversation’s context, as it could interfere with each node’s ability to perform its specific function.
Maintaining a conversation history is only necessary for building chatbots that support ongoing dialogue, where it makes sense to retain context.
To start, try creating a straightforward chain and assigning each node a specific role.
Btw here’s an example of a similar setup, but as a template using AI agents: Using AI Agents
Additionally, I recommend adding a note at the end of each prompt, instructing the AI not to provide any additional commentary and to return only the response text. This way, each node will produce a clean result, focusing solely on the answer.