Step one: the Python script kicks off a genesyscloud.platform.client session to pull queue stats, but it’s choking on a 401 after ten minutes. We’ve been manually firing client.refresh_access_token() every hour, which is a pain, so I want the SDK to handle the refresh cycle automatically without hardcoding the callback. Step two: the docs hint at passing an access_token_refresh handler on the genesyscloud.auth module, but it’s not triggering with this init block client = genesyscloud.platform.client.Client(client_id=env.CID, client_secret=env.CSEC) and the token just expires.