I made this automation to tell my kids when there game time is up for the next school day. i want to have openai create random funny messages for them. i made a test scenario and it failed?
`alias: Test automation
description: ""
triggers:
- trigger: state
entity_id:- input_boolean.test
from: "off"
to: "on"
conditions: []
actions:
- input_boolean.test
- data:
agent_id: conversation.kids_ai
text: >-
Craft a fun message for the kids, reminding them that game time is over
and they have 10 minutes to save their progress before shutdown.
Randomly include quotes from Invader Zim, Gumball, Teen Titans Go, and
Sonic.
language: en
response_variable: kids_message
action: conversation.process - delay:
seconds: 2 - data:
message: "{{ kids_message.speech.plain.speech }}"
action: script.game_time_actions
mode: single`