87 lines
2.6 KiB
YAML
Executable File
87 lines
2.6 KiB
YAML
Executable File
#####################################################################################################
|
|
###Script to actually send notifications to the ChromeCast Audios during normal hours and only when we are home! Call like this:
|
|
# action:
|
|
# service: script.speech_engine
|
|
# media_player:
|
|
# speech_message:
|
|
# # @CCOSTAN
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
######################################################################################################
|
|
|
|
speech_processing:
|
|
mode: queued
|
|
sequence:
|
|
|
|
- event: openai_instructions_sent
|
|
event_data:
|
|
instructions: "{{ speech_message | striptags }}"
|
|
|
|
- condition: and
|
|
conditions:
|
|
- condition: or
|
|
conditions:
|
|
- condition: state
|
|
entity_id: group.family
|
|
state: 'home'
|
|
- condition: state
|
|
entity_id: input_boolean.guest_mode
|
|
state: 'on'
|
|
- condition: or
|
|
conditions:
|
|
- condition: and
|
|
conditions:
|
|
- condition: state
|
|
entity_id: group.bed
|
|
state: 'off'
|
|
- condition: time
|
|
after: '08:00:00'
|
|
before: '21:30:00'
|
|
- condition: state
|
|
entity_id: input_boolean.alert_mode
|
|
state: 'on'
|
|
- condition: state
|
|
entity_id: input_boolean.speech_notifications
|
|
state: 'on'
|
|
|
|
- service: switch.turn_on
|
|
entity_id: switch.lr_amp
|
|
|
|
- service: media_player.volume_set
|
|
data:
|
|
entity_id: >
|
|
{{ media_player }}
|
|
volume_level: >-
|
|
{% if now().strftime('%H')|int < 12 and now().strftime('%H')|int > 6 %}
|
|
0.2
|
|
{% elif now().strftime('%H')|int > 12 and now().strftime('%H')|int < 20 %}
|
|
0.3
|
|
{% else %}
|
|
0.2
|
|
{% endif %}
|
|
|
|
- service: conversation.process
|
|
data:
|
|
agent_id: conversation.openai_conversation
|
|
text: >-
|
|
{{ speech_message }}
|
|
response_variable: agent
|
|
|
|
- service: tts.cloud_say
|
|
data:
|
|
entity_id: media_player.livingroomCC
|
|
options:
|
|
voice: JennyNeural
|
|
message: >-
|
|
{{ agent.response.speech.plain.speech }}
|
|
cache: true
|
|
|
|
- event: openai_iresponse
|
|
event_data:
|
|
response: "{{ now().strftime('%B %d,%Y %-I:%M %p') }} {{ now().strftime('%p') }}. {{ agent.response.speech.plain.speech | striptags}}"
|
|
|
|
- service: input_boolean.turn_off
|
|
data:
|
|
entity_id:
|
|
- input_boolean.alert_mode
|
|
- input_boolean.lastmsg
|