Trigger with template when temp is higher

Hi,
I try to make a trigger that start with this template.

alias: Chill Kitchen
description: ""
triggers:
  - trigger: numeric_state
    entity_id:
      - climate.thermostat_passage
    above: "{{states('input_number.summer_temp_target')|float(1) + 0.5}}"
    attribute: current_temperature
conditions: []

It aint work any idea?
Thank you

Templates are not valid in that field. The above and below configuration variables will accept a number or the entity ID of an input_number, number, sensor, or zone entity. For anything beyond the plain state of one of those entity types, you will need to use either a Template trigger (this is the recommended option), or add a value_template configuration variable to you Numeric state trigger.

alias: Chill Kitchen
description: ""
triggers:
  - trigger: template
    value_template: |
      {{ state_attr('climate.thermostat_passage', 'current_temperature') >
      states('input_number.summer_temp_target')|float(1) + 0.5 }}
conditions: []