After the tools
, I get a modified tool message in the agent
. How can I get the original one instead?
The flow:
builder.add_edge(START, "agent")
builder.add_conditional_edges("agent", tools_condition)
builder.add_edge("tools", "agent")
Thanks for the answer.