mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Fix freezing on HA startup when there are multiple Google Generative AI config entries (#118282)
* Fix freezing on HA startup when there are multiple Google Generative AI config entries * Add timeout to list_models
This commit is contained in:
parent
aa78998f41
commit
0c245f1976
@ -2,10 +2,11 @@
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from functools import partial
|
||||
import mimetypes
|
||||
from pathlib import Path
|
||||
|
||||
from google.ai import generativelanguage_v1beta
|
||||
from google.api_core.client_options import ClientOptions
|
||||
from google.api_core.exceptions import ClientError, DeadlineExceeded, GoogleAPICallError
|
||||
import google.generativeai as genai
|
||||
import google.generativeai.types as genai_types
|
||||
@ -105,12 +106,11 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||||
genai.configure(api_key=entry.data[CONF_API_KEY])
|
||||
|
||||
try:
|
||||
await hass.async_add_executor_job(
|
||||
partial(
|
||||
genai.get_model,
|
||||
entry.options.get(CONF_CHAT_MODEL, RECOMMENDED_CHAT_MODEL),
|
||||
request_options={"timeout": 5.0},
|
||||
)
|
||||
client = generativelanguage_v1beta.ModelServiceAsyncClient(
|
||||
client_options=ClientOptions(api_key=entry.data[CONF_API_KEY])
|
||||
)
|
||||
await client.get_model(
|
||||
name=entry.options.get(CONF_CHAT_MODEL, RECOMMENDED_CHAT_MODEL), timeout=5.0
|
||||
)
|
||||
except (GoogleAPICallError, ValueError) as err:
|
||||
if isinstance(err, ClientError) and err.reason == "API_KEY_INVALID":
|
||||
|
@ -8,6 +8,8 @@ import logging
|
||||
from types import MappingProxyType
|
||||
from typing import Any
|
||||
|
||||
from google.ai import generativelanguage_v1beta
|
||||
from google.api_core.client_options import ClientOptions
|
||||
from google.api_core.exceptions import ClientError, GoogleAPICallError
|
||||
import google.generativeai as genai
|
||||
import voluptuous as vol
|
||||
@ -72,12 +74,10 @@ async def validate_input(hass: HomeAssistant, data: dict[str, Any]) -> None:
|
||||
|
||||
Data has the keys from STEP_USER_DATA_SCHEMA with values provided by the user.
|
||||
"""
|
||||
genai.configure(api_key=data[CONF_API_KEY])
|
||||
|
||||
def get_first_model():
|
||||
return next(genai.list_models(request_options={"timeout": 5.0}), None)
|
||||
|
||||
await hass.async_add_executor_job(partial(get_first_model))
|
||||
client = generativelanguage_v1beta.ModelServiceAsyncClient(
|
||||
client_options=ClientOptions(api_key=data[CONF_API_KEY])
|
||||
)
|
||||
await client.list_models(timeout=5.0)
|
||||
|
||||
|
||||
class GoogleGenerativeAIConfigFlow(ConfigFlow, domain=DOMAIN):
|
||||
|
@ -16,9 +16,7 @@ from tests.common import MockConfigEntry
|
||||
@pytest.fixture
|
||||
def mock_genai():
|
||||
"""Mock the genai call in async_setup_entry."""
|
||||
with patch(
|
||||
"homeassistant.components.google_generative_ai_conversation.genai.get_model"
|
||||
):
|
||||
with patch("google.ai.generativelanguage_v1beta.ModelServiceAsyncClient.get_model"):
|
||||
yield
|
||||
|
||||
|
||||
@ -48,11 +46,8 @@ def mock_config_entry_with_assist(hass, mock_config_entry):
|
||||
@pytest.fixture
|
||||
async def mock_init_component(hass: HomeAssistant, mock_config_entry: ConfigEntry):
|
||||
"""Initialize integration."""
|
||||
with patch("google.generativeai.get_model"):
|
||||
assert await async_setup_component(
|
||||
hass, "google_generative_ai_conversation", {}
|
||||
)
|
||||
await hass.async_block_till_done()
|
||||
assert await async_setup_component(hass, "google_generative_ai_conversation", {})
|
||||
await hass.async_block_till_done()
|
||||
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
|
@ -1,6 +1,6 @@
|
||||
"""Test the Google Generative AI Conversation config flow."""
|
||||
|
||||
from unittest.mock import Mock, patch
|
||||
from unittest.mock import AsyncMock, Mock, patch
|
||||
|
||||
from google.api_core.exceptions import ClientError, DeadlineExceeded
|
||||
from google.rpc.error_details_pb2 import ErrorInfo
|
||||
@ -74,7 +74,7 @@ async def test_form(hass: HomeAssistant) -> None:
|
||||
|
||||
with (
|
||||
patch(
|
||||
"homeassistant.components.google_generative_ai_conversation.config_flow.genai.list_models",
|
||||
"google.ai.generativelanguage_v1beta.ModelServiceAsyncClient.list_models",
|
||||
),
|
||||
patch(
|
||||
"homeassistant.components.google_generative_ai_conversation.async_setup_entry",
|
||||
@ -205,9 +205,11 @@ async def test_form_errors(hass: HomeAssistant, side_effect, error) -> None:
|
||||
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
||||
)
|
||||
|
||||
mock_client = AsyncMock()
|
||||
mock_client.list_models.side_effect = side_effect
|
||||
with patch(
|
||||
"homeassistant.components.google_generative_ai_conversation.config_flow.genai.list_models",
|
||||
side_effect=side_effect,
|
||||
"google.ai.generativelanguage_v1beta.ModelServiceAsyncClient",
|
||||
return_value=mock_client,
|
||||
):
|
||||
result2 = await hass.config_entries.flow.async_configure(
|
||||
result["flow_id"],
|
||||
@ -245,7 +247,7 @@ async def test_reauth_flow(hass: HomeAssistant) -> None:
|
||||
|
||||
with (
|
||||
patch(
|
||||
"homeassistant.components.google_generative_ai_conversation.config_flow.genai.list_models",
|
||||
"google.ai.generativelanguage_v1beta.ModelServiceAsyncClient.list_models",
|
||||
),
|
||||
patch(
|
||||
"homeassistant.components.google_generative_ai_conversation.async_setup_entry",
|
||||
|
@ -538,12 +538,7 @@ async def test_template_error(
|
||||
"prompt": "talk like a {% if True %}smarthome{% else %}pirate please.",
|
||||
},
|
||||
)
|
||||
with (
|
||||
patch(
|
||||
"google.generativeai.get_model",
|
||||
),
|
||||
patch("google.generativeai.GenerativeModel"),
|
||||
):
|
||||
with patch("google.generativeai.GenerativeModel"):
|
||||
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
||||
await hass.async_block_till_done()
|
||||
result = await conversation.async_converse(
|
||||
|
@ -247,13 +247,14 @@ async def test_config_entry_error(
|
||||
hass: HomeAssistant, mock_config_entry: MockConfigEntry, side_effect, state, reauth
|
||||
) -> None:
|
||||
"""Test different configuration entry errors."""
|
||||
mock_client = AsyncMock()
|
||||
mock_client.get_model.side_effect = side_effect
|
||||
with patch(
|
||||
"homeassistant.components.google_generative_ai_conversation.genai.get_model",
|
||||
side_effect=side_effect,
|
||||
"google.ai.generativelanguage_v1beta.ModelServiceAsyncClient",
|
||||
return_value=mock_client,
|
||||
):
|
||||
mock_config_entry.add_to_hass(hass)
|
||||
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
||||
assert not await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
||||
await hass.async_block_till_done()
|
||||
assert mock_config_entry.state is state
|
||||
assert mock_config_entry.state == state
|
||||
mock_config_entry.async_get_active_flows(hass, {"reauth"})
|
||||
assert any(mock_config_entry.async_get_active_flows(hass, {"reauth"})) is reauth
|
||||
assert any(mock_config_entry.async_get_active_flows(hass, {"reauth"})) == reauth
|
||||
|
Loading…
x
Reference in New Issue
Block a user