Music Assistant and skip / next and VPE / Areas

So I have got music assistant working with chatgpt and can control it via this handy script/blueprint:-

(Option 3).

However, I can’t get it to skip or go back (although others I’ve discussed this with seem to think its possible, but for me the voice assistant just either replies with ‘I dont understand’ or the red LED ring on the VPE I am using flashes red.

So I created some super simple automations to do it. An example of next is below.
How can I extend this automation such that it affects the media in the same area as the VPE, rather than fixing the entity id as below:

alias: Voice - Track (Skip / Next)
description: ""
triggers:
  - trigger: conversation
    command:
      - (next | skip) (music | track | tune)
conditions: []
actions:
  - action: media_player.media_next_track
    metadata: {}
    data: {}
    target:
      entity_id: media_player.home_assistant_voice_media_player_2
mode: single

I found the answer with a bit of googling and forum searching, for those interested its here:-