Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
fix: response_dict property to payload for fix(#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsdanielpark committed Mar 17, 2024
1 parent f920bdb commit 5c32929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gemini/src/model/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ def generated_images(self) -> List[GeminiImage]:
return self.candidates[self.chosen].generated_images

@property
def response_dict(self) -> Optional[Dict]:
def payload(self) -> Optional[Dict]:
"""The response dictionary associated with the model output."""
return self.response_dict

0 comments on commit 5c32929

Please sign in to comment.