Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lkuligin committed Feb 13, 2024
1 parent f4efa8a commit 6ac4cf9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libs/genai/langchain_google_genai/chat_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,9 @@ def _parse_chat_history(
return messages


def _parts_to_content(parts: List[genai.types.PartType]) -> Union[List[dict], str]:
def _parts_to_content(
parts: List[genai.types.PartType],
) -> Union[str, List[Union[str, dict]]]:
"""Converts a list of Gemini API Part objects into a list of LangChain messages."""
if len(parts) == 1 and parts[0].text is not None and not parts[0].inline_data:
# Simple text response. The typical response
Expand Down

0 comments on commit 6ac4cf9

Please sign in to comment.