diff --git a/homeassistant/helpers/llm.py b/homeassistant/helpers/llm.py index b87a4b8dcb0..5a39bfaa726 100644 --- a/homeassistant/helpers/llm.py +++ b/homeassistant/helpers/llm.py @@ -250,7 +250,7 @@ class AssistAPI(API): prompt = [ ( "Call the intent tools to control Home Assistant. " - "When controlling an area, prefer passing area name." + "When controlling an area, prefer passing area name and domain." ) ] area: ar.AreaEntry | None = None diff --git a/tests/helpers/test_llm.py b/tests/helpers/test_llm.py index 0c45e82a08f..a59b4767196 100644 --- a/tests/helpers/test_llm.py +++ b/tests/helpers/test_llm.py @@ -423,7 +423,7 @@ async def test_assist_api_prompt( ) first_part_prompt = ( "Call the intent tools to control Home Assistant. " - "When controlling an area, prefer passing area name." + "When controlling an area, prefer passing area name and domain." ) no_timer_prompt = "This device does not support timers."