Tool call member response

How can I return the information about a member’s tool call when using a team? I don’t see that information in the response when using stream=False.

Hi @hoangnn To get member tool call information when using stream=False, you need to set store_member_responses=True on your Team.This stores the member responses (including their tool calls) on the TeamRunOutput object.The member_responses attribute on TeamRunOutput contains a list of RunOutput objects from each member, which include their messages and tool calls.
You can refer to the below example for more details Team Metrics - Agno
thanks