I want to have the response variable to be set to a entity

Hi, I want to get the variable voordeurbeschrijving as an entity so it can show on my dashboard. This is what my config from the automation looks like. I am using LLM Vision for AI recognition when there is a person in the yard. And I want him to describe what there is happening. And now I want that information to be displayed on my dashboard

alias: AI Describtion LLM Vision Doorbell
description: ""
triggers:
  - type: occupied
    device_id: 62bff95f3ec9493c5e0ebdfbac994a2a
    entity_id: 1edd0a2ca093b604f2349d40847805c7
    domain: binary_sensor
    trigger: device
conditions: []
actions:
  - action: llmvision.image_analyzer
    data:
      include_filename: false
      target_width: 1280
      detail: low
      max_tokens: 100
      temperature: 0.2
      expose_images: true
      provider: 01JDKK0GAP21RNT331WK8W7YN8
      message: >-
        Describe what the person is doing in the frontyard and describe briefly
        what is happening in the background. If it is a mailman tell it.
      image_entity:
        - camera.reolink
    response_variable: voordeurbeschrijving
  - action: input_text.set_value
    target:
      entity_id: input_text.voordeurbeschrijving
    data:
      value: "{{voordeurbeschrijving}}"
  - action: notify.mobile_app_galaxy_s23
    data:
      title: Persoon bij voordeur gezien.
      message: "{{voordeurbeschrijving}}"
      data:
        image: local/llmvision/reolink.jpg
        clickAction: /dashboard-extras/deurbel
        actions:
          - action: URI
            title: Bekijk Voordeur
            uri: /dashboard-extras/deurbel
mode: single

I just saw that the maximum characters were 255, i checked it, and the response doesnt get over the 255 characters so that is not the issue

You did not tell us what the issue is. If there’s no text in the input helper and also no message in the notification, then the problem is with the service call to the LLM.
If there is no trace for the automation, the trigger isn’t firing.

ps. I do not know much about the LLM integration you are using, but if the provider in your config is some kind of API key you should remove it from your poast and ask the mods to delete the edit history.

It is working now, i just needed to add to my config file that the maximum characters should be 255