I have created a list of sentences I would like my Ollama driven LLM to use. The following one is used correctly:
`alias: Sentence - Movie Time
description: >-
This changes the basement scene to "movie time" when Voice Assistant given
command
triggers:
- trigger: conversation
command:- Movie time
- Time to watch a movie
conditions:
- condition: state
entity_id: binary_sensor.basement_overhead_motion_group
state: "on"
actions: - action: input_select.select_option
metadata: {}
data:
option: Movie Time
target:
entity_id: input_select.basement_state - set_conversation_response: Enjoy the show!
mode: single`
However, the following sentence does not work at all...
`alias: Sentence - Wondering
description: >-
This changes the basement scene to "Wondering" when Voice Assistant given
command
triggers:
- trigger: conversation
command:- Wondering
- Doing normal activities
- Just wondering around
conditions:
- condition: state
entity_id: binary_sensor.basement_overhead_motion_group
state: "on"
actions: - action: input_select.select_option
metadata: {}
data:
option: Wondering
target:
entity_id: input_select.basement_state - set_conversation_response: |
Do not get lost
mode: single`
I can tell when they are being used by looking at the last triggered flag. Appreciate any help.