Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions src/google/adk/cli/utils/evals.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def convert_session_to_eval_format(session: Session) -> list[dict[str, Any]]:
'tool_input': tool_input,
})
elif subsequent_part.text:
# Also keep track of all the natural langauge responses that
# Also keep track of all the natural language responses that
# agent (or sub agents) generated.
intermediate_agent_responses.append(
{'author': event_author, 'text': subsequent_part.text}
Expand All @@ -75,7 +75,7 @@ def convert_session_to_eval_format(session: Session) -> list[dict[str, Any]]:
# If we are here then either we are done reading all the events or we
# encountered an event that had content authored by the end-user.
# This, basically means an end of turn.
# We assume that the last natural langauge intermediate response is the
# We assume that the last natural language intermediate response is the
# final response from the agent/model. We treat that as a reference.
eval_case.append({
'query': query,
Expand Down