I have a blueprint setup to greet us when we come in the door. However the way it's setup it by default uses announce on for the speaker. It's a sonos one i'm playing to but i tried editing the yaml for the blue print to no success. i know it's announce: false but i don't see how to put it in this part without breaking the script.
`- service: tts.cloud_say
data:
entity_id: !input target
message: "{%- set single_lst = single_msg.split('\n') -%}\n{%- set multiple_lst
= multiple_msg.split('\n') -%}\n{%- if persons_count|length > 1 -%}\n {{ multiple_lst
| random | replace('<persons>', persons_names) }}\n{%- elif persons_count|length
0 -%}\n {{ single_lst | random | replace('<person>', persons_names) }}\n{%-
endif -%}\n"
- condition: template
value_template: '{{ addactions|length > 0 }}' - choose: []
default: !input actions
mode: single`