We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tool_responses
1 parent 8e43f0d commit f4a8df0Copy full SHA for f4a8df0
src/google/adk/evaluation/eval_case.py
@@ -37,6 +37,9 @@ class IntermediateData(EvalBaseModel):
37
tool_uses: list[genai_types.FunctionCall] = []
38
"""Tool use trajectory in chronological order."""
39
40
+ tool_responses: list[genai_types.FunctionResponse] = []
41
+ """Tool response trajectory in chronological order."""
42
+
43
intermediate_responses: list[tuple[str, list[genai_types.Part]]] = []
44
"""Intermediate responses generated by sub-agents to convey progress or status
45
in a multi-agent system, distinct from the final response.
0 commit comments