From 76116c800820c02a32a6700f1433b52f73c0fbf6 Mon Sep 17 00:00:00 2001 From: Ankur Sharma Date: Fri, 16 May 2025 13:48:52 -0700 Subject: [PATCH] Minor documentation update to a file. PiperOrigin-RevId: 759742154 --- src/google/adk/evaluation/eval_case.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/google/adk/evaluation/eval_case.py b/src/google/adk/evaluation/eval_case.py index 9a787a1..556071c 100644 --- a/src/google/adk/evaluation/eval_case.py +++ b/src/google/adk/evaluation/eval_case.py @@ -57,10 +57,10 @@ class Invocation(EvalBaseModel): """Content provided by the user in this invocation.""" final_response: Optional[genai_types.Content] = None - """Final response from the agent that acts a reference or benchmark.""" + """Final response from the agent.""" intermediate_data: Optional[IntermediateData] = None - """Reference intermediate steps generated as a part of Agent execution. + """Intermediate steps generated as a part of Agent execution. For a multi-agent system, it is also helpful to inspect the route that the agent took to generate final response.