Skip to content

Commit

Permalink
Merge branch 'main' into genai_tool_message
Browse files Browse the repository at this point in the history
  • Loading branch information
lkuligin authored Apr 24, 2024
2 parents 71134e0 + f2f33c6 commit 59499e7
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions libs/vertexai/langchain_google_vertexai/chat_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
_format_to_vertex_tool,
_format_functions_to_vertex_tool_dict,
)
from google.api_core.exceptions import GoogleAPIError

logger = logging.getLogger(__name__)

Expand Down Expand Up @@ -442,14 +443,14 @@ def _completion_with_retry_inner(generation_method: Callable, **kwargs: Any) ->
chunks = list(response)
for chunk in chunks:
if not chunk.candidates:
raise ValueError("Got 0 candidates from generations.")
raise GoogleAPIError("Got 0 candidates from generations.")
return iter(chunks)
if kwargs.get("stream"):
return response
if len(response.candidates):
return response
else:
raise ValueError("Got 0 candidates from generations.")
raise GoogleAPIError("Got 0 candidates from generations.")

return _completion_with_retry_inner(generation_method, **kwargs)

Expand All @@ -476,14 +477,14 @@ async def _completion_with_retry_inner(
chunks = list(response)
for chunk in chunks:
if not chunk.candidates:
raise ValueError("Got 0 candidates from generations.")
raise GoogleAPIError("Got 0 candidates from generations.")
return iter(chunks)
if kwargs.get("stream"):
return response
if len(response.candidates):
return response
else:
raise ValueError("Got 0 candidates from generations.")
raise GoogleAPIError("Got 0 candidates from generations.")

return await _completion_with_retry_inner(generation_method, **kwargs)

Expand Down Expand Up @@ -737,6 +738,7 @@ def _stream(
client.generate_content,
max_retries=self.max_retries,
contents=contents,
stream=True,
check_stream_response_for_candidates=self.check_stream_response_for_candidates,
**params,
)
Expand Down Expand Up @@ -790,6 +792,7 @@ async def _astream(
client.generate_content_async,
max_retries=self.max_retries,
contents=contents,
stream=True,
check_stream_response_for_candidates=self.check_stream_response_for_candidates,
**params,
):
Expand Down

0 comments on commit 59499e7

Please sign in to comment.