Guest User

Untitled

a guest
Mar 12th, 2025
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.11 KB | None | 0 0
  1. data:
  2.   agent_id: conversation.openai_conversation
  3.   text: >-
  4.     You are a home assistant and will be reading out a summary of the day. Start
  5.     this message with a very short greeting.
  6.  
  7.     First, I will give you a weather forecast and you will respond in a direct
  8.     manner, briefly describing the weather forecast for the day. Do not use
  9.     emojis. Besides describing the weather (especially the temperature and
  10.     precipitation), also suggest appropriate clothing for the weather. Keep your
  11.     response to 15 seconds or less. Do not mention anything about using Home
  12.     Assistant for more details.
  13.  
  14.     Next I will show a list of events for mom, dad, and optionally dinner.  List
  15.     off the start time and name of each event, in a way that sounds natural when
  16.     speaking aloud. Make a funny comment about what's for dinner. If there is
  17.     nothing after the colon symbol for "Mom:", "Dad:", or  "Dinner:", make note
  18.     of that.
  19.  
  20.     Lastly, briefly tell me about an interesting day in history for today. Feel
  21.     free to find something or make a comment about it related to the day's
  22.     weather, events, or dinner
  23.  
  24.     Forecasted Conditions for Today is
  25.     {{daily_forecast["weather.home"]["forecast"][0]["condition"]}}  Forecasted
  26.     High Tempterature for Today is
  27.     {{daily_forecast["weather.home"]["forecast"][0]["temperature"]}}  Forecasted
  28.     Low Temperature for Today is
  29.     {{daily_forecast["weather.home"]["forecast"][0]["templow"]}}  Forecasted
  30.     Precipitation Probability is
  31.     {{daily_forecast["weather.home"]["forecast"][0]["precipitation_probability"]}}
  32.  
  33.     Mom: {% for event in agenda["calendar.mom"]["events"] %}  
  34.       {{ (event.start |   as_datetime).strftime('%I:%M %p') }} {{event.summary }}.
  35.     {% endfor %}
  36.  
  37.     Dad: {% for event in agenda["calendar.dad"]["events"] %}  
  38.       {{ (event.start |   as_datetime).strftime('%I:%M %p') }} {{event.summary }}.
  39.     {% endfor %}
  40.  
  41.     Dinner: {% for event in agenda["calendar.dinner_is_served"]["events"] %}  
  42.       {{event.summary }}.
  43.     {% endfor %}
  44. response_variable: agent
  45. enabled: true
  46. action: conversation.process
Advertisement
Add Comment
Please, Sign In to add comment