Hi,
I was using the below automation without any issues using Frigate 17.2 but now it stopped to work
alias: Face Recognition Notification
description: Send notification when a face is recognized by Frigate
triggers:
- topic: frigate/tracked_object_update
trigger: mqtt
conditions:
- condition: template
value_template: "{{ trigger.payload_json.type == 'face' }}"
- condition: template
value_template: "{{ trigger.payload_json.name != 'unknown' }}"
- condition: template
value_template: "{{ trigger.payload_json.score > 0.7 }}"
actions:
- action: tts.cloud_say
metadata: {}
data:
cache: false
entity_id: media_player.cucina
message: >-
{{ trigger.payload_json.name }} è stato visto al
{{trigger.payload_json.camera }}
In Frigate yml I have the following config
mqtt:
enabled: true
host: xxx.xxx.x.xxx
port: xxxx
topic_prefix: frigate
client_id: frigate
user: xxxx
password: xxxx
stats_interval: 60
qos: 0
Thanks for support


