You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This question is less about what is possible but more about what is the right way to do things and make sure they work.
As I read the docs and examples such as the "Customer Support Agent" I see that most react style tool calling agents are implemented with a fairly simple AgentState with messages as an attribute.
However, I also see that tools can return artifacts and also receive and update state (via injected args and commands).
I am currently trying to build a ReACT style agent that has a bunch of tools at its disposal. The problem/confusion I am running into is how to design my tools and states based on this criteria:
The tools are often used one after another, however some tool outputs may need feedback prior to continuing to the next tool.
The tools are often complex and may return nested pydantic model instances and/or utilize pydantic model instance in their args. Here is an example:
Now, I am hoping that the model will take the results it gets from one tool and pass them to the other without trying to "generate" them on the fly. It sometimes does but sometimes not. In order to enforce this behaviour, I thought: why not update the AgentState from within the tool call by using Command as the return. This also means that the AgentState needs to have new attributes that can store these results. However, this feels off to me.
And then, I notice the llm will not take these new attributes into account and would instead try to generate the args for the subsequent tool calls based on the "ToolMessage" that it had recieved in the messages list. It seems that the llm only sees the "messages" and is not aware of the rest of the state.
So. My question is:
What is the right way to build a ReACT style agent where the tool calls can generate fairly complex outputs in the form of PydanticModelInstances? Does it make sense to have custom state attributes for ReACT style agents or is that more suitable for workflows?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
This question is less about what is possible but more about what is the right way to do things and make sure they work.
As I read the docs and examples such as the "Customer Support Agent" I see that most react style tool calling agents are implemented with a fairly simple AgentState with messages as an attribute.
However, I also see that tools can return artifacts and also receive and update state (via injected args and commands).
I am currently trying to build a ReACT style agent that has a bunch of tools at its disposal. The problem/confusion I am running into is how to design my tools and states based on this criteria:
Now, I am hoping that the model will take the results it gets from one tool and pass them to the other without trying to "generate" them on the fly. It sometimes does but sometimes not. In order to enforce this behaviour, I thought: why not update the AgentState from within the tool call by using Command as the return. This also means that the AgentState needs to have new attributes that can store these results. However, this feels off to me.
And then, I notice the llm will not take these new attributes into account and would instead try to generate the args for the subsequent tool calls based on the "ToolMessage" that it had recieved in the messages list. It seems that the llm only sees the "messages" and is not aware of the rest of the state.
So. My question is:
Beta Was this translation helpful? Give feedback.
All reactions