Skip to content

Commit 9586bdd

Browse files
google-genai-botcopybara-github
authored andcommitted
feat: GenAI SDK client - add support for the Managed Task Store API
PiperOrigin-RevId: 866070616
1 parent 9a9908a commit 9586bdd

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

google/genai/_common.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,10 +627,12 @@ def _from_response(
627627
and 'include_all_fields' in kwargs['config']
628628
and kwargs['config']['include_all_fields']
629629
)
630-
630+
print('resp1', response)
631631
if not should_skip_removing_fields:
632632
_remove_extra_fields(cls, response)
633+
print('resp2', response)
633634
validated_response = cls.model_validate(response)
635+
print('resp3', validated_response)
634636
return validated_response
635637

636638
def to_json_dict(self) -> dict[str, object]:

0 commit comments

Comments
 (0)