How to determine which Google Nest display initiated a command? Possible?

Is there any way of determining which Google display initiated a specific command?

I have 5 Google Nest displays in my home and would like to cast a dashboard/view (via a script) to the specific display that I initiated the command from.

So if I were to say “show me the loungeroom” to the kitchen display, the kitchen display would execute the script called “show me the loungeroom” and show the loungeroom dashboard on the kitchen display.

If I said the same command to the bedroom display, the bedroom display would show the loungeroom dashboard.

Currently i have a simple script set up that the “show me the loungeroom” command gets cast to ALL the displays at the same time which is problematic if my wife has music/youtube playing on one of the units in the office as it interrupts her usage.

alias: show me the lougeroom

...

- service: media_player.play_media
    target:
      entity_id: entity_of_the_player_that_initiated_the_command
    data:
      media_content_id: lovelace-nestdisplay/loungeroom
      media_content_type: lovelace

I want to avoid having to create a ton of scripts that respond to a phrase like “show me the loungeroom in the kitchen” and “show me the loungeroom in the bedroom” - that methodology is a bit of a kludge.

Ideas anyone?