collabora / WhisperFusion

WhisperFusion builds upon the capabilities of WhisperLive and WhisperSpeech to provide a seamless conversations with an AI.
1.45k stars 101 forks source link

Readme.md is missing port forward to 8000 in sample command line #13

Closed jprovencher closed 5 months ago

jprovencher commented 5 months ago

Sample command line is missing the port forward to expose the python http.server module..

Command should be: docker run --gpus all --shm-size 64G -p 6006:6006 -p 8888:8888 -p 8000:8000 -it ghcr.io/collabora/whisperfusion:latest

DamianB-BitFlipper commented 5 months ago

You are supposed to run the python server outside of the docker instance with the models. Either on the backend or locally with a tunnel to the backend for ports 6006, 8888.

jprovencher commented 5 months ago

Got it! Maybe a future version could start the http endpoint as well internally to the docker container? Closing for now as designed.