Presence detection with ping platform

Hi All,
I’m using the ping platform to have basic presence detection of myslef and my wife.
So I’m pinging both phones to determine if somebody is home. Because regularly the phones switch off wifi to save battery power, I’ve made a boolean presence entity, which switches to “NOT HOME” if the phones are not detected within 10 minutes. I’m using bayesian platform to switch on presence like below:

- platform: bayesian  # SOMEBODYHome
  name: "SOMEBODYPresent"
  prior: 0.25
  probability_threshold: 0.95
  observations:
    - platform: "state"
      entity_id: input_boolean.HE_present  # The boolean which switches based on the HEphone ping absence of 10 minutes
      prob_given_true: 1.0
      prob_given_false: 0.0
      to_state: "on"
    - platform: "state"
      entity_id: input_boolean.SHE_present # The boolean which switches based on the HEphone ping absence of 10 minutes
      prob_given_true: 1.0
      prob_given_false: 0.0
      to_state: "on"

So this all works fine, except that I don’t want to have the delay if one of us comes home. So the SOMEBODYHome should react instantly when one of the phones are pinged. Any ideas how to establish that in the bayesian?
PPee