I have Google mini's in my home. They work fine giving commands to HA. They are connected with Nabu Casa and all the entities that I like to be exposed are correctly exposed.
Now I have installed OpenAI as LLM on HA. This works. I have used it as the provider for the Assist and now I can use normal spoken sentences to control my home.
I would like to be able to use my Google mini's to give those commands. I'm at a loss on how to get this working, if at all possible.
I tried the help of chatgpt, but i have the feeling that he just makes scripts up. It made me create a script in HA. Expose it to Google. Use Google with something like 'start Scriptname'. The triggering of a script is not the issue, I guess the sript just doesn't work.
alias: Chatgesprek
sequence:
- data:
text: Hoe kan ik je helpen?
action: conversation.process
- delay: "00:00:02"
- target:
entity_id: script.chatgesprek
action: script.turn_on
data: {}
- entity_id: media_player.google_mini
data:
message: Ik luister, wat wil je weten?
action: tts.google_translate_say
mode: single
This is the script that it proposed.