Create button that will Run A/C at set temp and time

I don’t see the error:

alias: Run A/C tonight
description: ''
trigger:
  - platform: time
    at: '01:00:00'
    id: 'On'
  - platform: time
    at: '04:30:00'
    id: 'Off'
condition: []
action:
  - choose:
      - conditions:
          - condition: trigger
            id: 'On'
          - condition: state
            entity_id: input_boolean.new_run_a_c_tonight
            state: 'on'
        sequence:
          - service: climate.set_temperature
            data:
              temperature: 64
              hvac_mode: cool
            target:
              entity_id: climate.kitchen
      - conditions:
          - condition: trigger
            id: 'Off'
        sequence:
          - service: climate.turn_off
            target:
              entity_id: climate.kitchen
            data: {}
          - service: input_boolean.turn_off
            target:
              entity_id: input_boolean.run_ac_tonight
            data: {}
    default: []
mode: restart