Why does the agent only return the ToolCallSummaryMessage type tool result after invoking the tool, instead of a TextMessage type summary?
#7114
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am studying the official examples, and I notice that the agent with tools directly returns the result of the tool call instead of passing the tool result back to the LLM for another summary. Is this a feature of the Autogen framework? How can one implement it so that the LLM summarizes the result returned by the tool?
Official example:https://microsoft.github.io/autogen/stable/user-guide/agentchat-user-guide/tutorial/agents.html#getting-result
It can be seen that the last piece of information is of the
ToolCallSummaryMessagetype, and it is consistent with the function result. The LLM did not summarize and return it to the user again.Beta Was this translation helpful? Give feedback.
All reactions