8000 Fixed 2 issue points. by growmuye · Pull Request #1374 · google/adk-python · GitHub
[go: up one dir, main page]

Skip to content

Fixed 2 issue points. #1374

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
* Fix the blocking bug in runner when running agent with concurrent u…
…sers > 1

* Fix eval: index out of range
  • Loading branch information
growmuye committed Jun 20, 2025
commit 2d989a3cb573b2f512d05f3936e6817ecff59899
6 changes: 2 additions & 4 deletions src/google/adk/cli/utils/evals.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def convert_session_to_eval_invocations(session: Session) -> list[Invocation]:
parts=intermediate_responses[-1][1]
)
else:
final_response = []
final_response = genai_types.Content(parts=[])

invocations.append(
Invocation(
Expand All @@ -177,9 +177,7 @@ def convert_session_to_eval_invocations(session: Session) -> list[Invocation]:
tool_uses=tool_uses,
intermediate_responses=intermediate_responses[:-1],
),
final_response=genai_types.Content(
parts=final_response
),
final_response=final_response,
)
)

Expand Down
0