core icon indicating copy to clipboard operation
core copied to clipboard

Cant change voice tts.home_assistant_cloud

Open TheBartoMan opened this issue 3 weeks ago • 5 comments

The problem

When I do "Try Voice" from the GUI, it works:

Image

When I try to do it via automation its always the same voice:

action: tts.speak target: entity_id: tts.home_assistant_cloud data: cache: false media_player_entity_id: media_player.speaker1 message: "This is a Test" options: voice: "Noah"

Ive tried all sort of ways to set the voice and it doesnt seem to change.

What version of Home Assistant Core has the issue?

core-2025.12.2

What was the last working version of Home Assistant Core?

No response

What type of installation are you running?

Home Assistant OS

Integration causing the issue

tts

Link to integration documentation on our website

https://www.home-assistant.io/integrations/tts/

Diagnostics information

No response

Example YAML snippet

action: tts.speak
target:
  entity_id: tts.home_assistant_cloud
data:
  cache: false
  media_player_entity_id: media_player.speaker1
  message: "This is a Test"
  options:
    voice: "Noah"

Anything in the logs that might be useful for us?


Additional information

I do not get any errors, just cant figure how to choose a voice like I get form the GUI list.

TheBartoMan avatar Dec 09 '25 10:12 TheBartoMan

Hey there @home-assistant/core, mind taking a look at this issue as it has been labeled with an integration (tts) you are listed as a code owner for? Thanks!

Code owner commands

Code owners of tts can trigger bot actions by commenting:

  • @home-assistant close Closes the issue.
  • @home-assistant rename Awesome new title Renames the issue.
  • @home-assistant reopen Reopen the issue.
  • @home-assistant unassign tts Removes the current integration label and assignees on the issue, add the integration domain after the command.
  • @home-assistant add-label needs-more-information Add a label (needs-more-information, problem in dependency, problem in custom component) to the issue.
  • @home-assistant remove-label needs-more-information Remove a label (needs-more-information, problem in dependency, problem in custom component) on the issue.

(message by CodeOwnersMention)


tts documentation tts source (message by IssueLinks)

home-assistant[bot] avatar Dec 09 '25 10:12 home-assistant[bot]

Please capture debug logs to let us see what's going on.

Please use the following logger integration YAML settings and restart Home Assistant before provoking the behavior:

logger:
  default: warning
  logs:
    homeassistant.components.cloud: debug
    hass_nabucasa: debug

https://www.home-assistant.io/integrations/logger/

MartinHjelmare avatar Dec 09 '25 20:12 MartinHjelmare

Hey there @home-assistant/cloud, mind taking a look at this issue as it has been labeled with an integration (cloud) you are listed as a code owner for? Thanks!

Code owner commands

Code owners of cloud can trigger bot actions by commenting:

  • @home-assistant close Closes the issue.
  • @home-assistant rename Awesome new title Renames the issue.
  • @home-assistant reopen Reopen the issue.
  • @home-assistant unassign cloud Removes the current integration label and assignees on the issue, add the integration domain after the command.
  • @home-assistant add-label needs-more-information Add a label (needs-more-information, problem in dependency, problem in custom component) to the issue.
  • @home-assistant remove-label needs-more-information Remove a label (needs-more-information, problem in dependency, problem in custom component) on the issue.

(message by CodeOwnersMention)


cloud documentation cloud source (message by IssueLinks)

home-assistant[bot] avatar Dec 09 '25 20:12 home-assistant[bot]

"Noah" should be "NoahNeural"

It is easier to find the correct value if you use the Play media action with the TTS media.

ludeeus avatar Dec 09 '25 20:12 ludeeus

You can also go to the Cloud config panel and view and copy the selected voice ID string.

MartinHjelmare avatar Dec 09 '25 22:12 MartinHjelmare

"Noah" should be "NoahNeural"

It is easier to find the correct value if you use the Play media action with the TTS media.

This was the answer!

TheBartoMan avatar Dec 10 '25 09:12 TheBartoMan