Face and person detection with Deepstack - local and free!

It seems to have stopped working since they release the free version. Noticed 401’s in the container logs so checked the docs and they have removed the API key env variable…I have updated my stack and removed the API key from both the compose file and the HA config…

Now see that its returning 200’s:

Container logs:
[GIN] 2020/05/05 - 12:37:48 | 200 | 194.66148ms | 172.16.13.4 | POST /v1/vision/detection

Here is my HA config:

image_processing:
  - platform: deepstack_object
    ip_address: deepstack
    port: 5000
    #api_key: secret! deepstack_api
    #scan_interval: 30 # Optional, in seconds
    confidence: 50
    save_file_folder: /config/www/front/
    save_timestamped_file: True
    source:
      - entity_id: camera.front
        name: deepstack_person_detector_front
  - platform: deepstack_object
    ip_address: deepstack
    port: 5000
   #confidence: 50
    #api_key: secret! deepstack_api
    #scan_interval: 30 # Optional, in seconds
    save_file_folder: /config/www/back/
    save_timestamped_file: True
    source:
      - entity_id: camera.rear
        name: deepstack_person_detector_back

Any ideas?

Ta in advance!