mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 07:05:48 +01:00
Bump intents and fix for api change (#155374)
This commit is contained in:
@@ -1242,10 +1242,14 @@ class DefaultAgent(ConversationEntity):
|
||||
intent_name: {
|
||||
combo_key: [
|
||||
SlotCombinationInfo(
|
||||
name_domains=(set(name_domains) if name_domains else None)
|
||||
name_domains=(
|
||||
set(combo_info.name_domains)
|
||||
if combo_info.name_domains
|
||||
else None
|
||||
)
|
||||
)
|
||||
]
|
||||
for combo_key, name_domains in intent_combos.items()
|
||||
for combo_key, combo_info in intent_combos.items()
|
||||
}
|
||||
for intent_name, intent_combos in self._fuzzy_config.slot_combinations.items()
|
||||
},
|
||||
|
||||
@@ -6,5 +6,5 @@
|
||||
"documentation": "https://www.home-assistant.io/integrations/conversation",
|
||||
"integration_type": "entity",
|
||||
"quality_scale": "internal",
|
||||
"requirements": ["hassil==3.3.0", "home-assistant-intents==2025.10.1"]
|
||||
"requirements": ["hassil==3.3.0", "home-assistant-intents==2025.10.28"]
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ hass-nabucasa==1.4.0
|
||||
hassil==3.3.0
|
||||
home-assistant-bluetooth==1.13.1
|
||||
home-assistant-frontend==20251001.4
|
||||
home-assistant-intents==2025.10.1
|
||||
home-assistant-intents==2025.10.28
|
||||
httpx==0.28.1
|
||||
ifaddr==0.2.0
|
||||
Jinja2==3.1.6
|
||||
|
||||
2
requirements_all.txt
generated
2
requirements_all.txt
generated
@@ -1204,7 +1204,7 @@ holidays==0.83
|
||||
home-assistant-frontend==20251001.4
|
||||
|
||||
# homeassistant.components.conversation
|
||||
home-assistant-intents==2025.10.1
|
||||
home-assistant-intents==2025.10.28
|
||||
|
||||
# homeassistant.components.homematicip_cloud
|
||||
homematicip==2.3.1
|
||||
|
||||
2
requirements_test_all.txt
generated
2
requirements_test_all.txt
generated
@@ -1053,7 +1053,7 @@ holidays==0.83
|
||||
home-assistant-frontend==20251001.4
|
||||
|
||||
# homeassistant.components.conversation
|
||||
home-assistant-intents==2025.10.1
|
||||
home-assistant-intents==2025.10.28
|
||||
|
||||
# homeassistant.components.homematicip_cloud
|
||||
homematicip==2.3.1
|
||||
|
||||
2
script/hassfest/docker/Dockerfile
generated
2
script/hassfest/docker/Dockerfile
generated
@@ -32,7 +32,7 @@ RUN --mount=from=ghcr.io/astral-sh/uv:0.9.5,source=/uv,target=/bin/uv \
|
||||
go2rtc-client==0.2.1 \
|
||||
ha-ffmpeg==3.2.2 \
|
||||
hassil==3.3.0 \
|
||||
home-assistant-intents==2025.10.1 \
|
||||
home-assistant-intents==2025.10.28 \
|
||||
mutagen==1.47.0 \
|
||||
pymicro-vad==1.0.1 \
|
||||
pyspeex-noise==1.0.2
|
||||
|
||||
Reference in New Issue
Block a user