Skip to content
Open
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
chore: Format lite_llm.py using pre-commit (pyink)
  • Loading branch information
1wos committed May 12, 2026
commit 57851ed50553eacc6d081306f8eaf621f0cea16c
4 changes: 2 additions & 2 deletions src/google/adk/models/lite_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1689,8 +1689,8 @@ def _model_response_to_generate_content_response(
llm_response.grounding_metadata = raw_grounding
elif isinstance(raw_grounding, dict):
try:
llm_response.grounding_metadata = types.GroundingMetadata.model_validate(
raw_grounding
llm_response.grounding_metadata = (
types.GroundingMetadata.model_validate(raw_grounding)
)
except Exception: # pragma: no cover
logger.warning(
Expand Down