-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add whisper to autoscaler #652
base: main
Are you sure you want to change the base?
Conversation
ansible/build-gpu-oracle.yml
Outdated
@@ -39,4 +39,7 @@ | |||
# docker pull most recent running version of skynet and whisper | |||
- { role: "gpu-docker-pull", tags: "gpu-docker", gpu_docker_type: "skynet" } | |||
- { role: "gpu-docker-pull", tags: "gpu-docker", gpu_docker_type: "whisper" } | |||
- { role: "streaming-whisper", tags: "gpu-docker", gpu_docker_type: "whisper" } | |||
- { role: "autoscaler-sidecar", tags: "autoscaler-sidecar", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This role is already included in the base image that GPU comes from, so no need to install it here.
ansible/build-gpu-oracle.yml
Outdated
@@ -39,4 +39,7 @@ | |||
# docker pull most recent running version of skynet and whisper | |||
- { role: "gpu-docker-pull", tags: "gpu-docker", gpu_docker_type: "skynet" } | |||
- { role: "gpu-docker-pull", tags: "gpu-docker", gpu_docker_type: "whisper" } | |||
- { role: "streaming-whisper", tags: "gpu-docker", gpu_docker_type: "whisper" } | |||
- { role: "autoscaler-sidecar", tags: "autoscaler-sidecar", | |||
autoscaler_instance_type: "streaming-whisper", autoscaler_install_flag: true, autoscaler_configure_flag: false, jitsi_autoscaler_sidecar: true} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a shared image for both skynet ande whisper, so we wouldn't want to set the instance type here.
@@ -0,0 +1,13 @@ | |||
- name: Install dependencies | |||
ansible.builtin.package: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's fine to include these, but just FYI they should both be already installed in the base image so this will be a no-op.
@@ -170,7 +170,7 @@ jigasi_transcriber_remote_select_aud: "jitsi" | |||
jigasi_transcriber_oci_flag: false | |||
jigasi_transcriber_whisper_private_key: "replaceme" | |||
jigasi_transcriber_whisper_private_key_name: "replaceme" | |||
jigasi_transcriber_whisper_websocket_url: "wss://{{ hcv_environment }}-{{ oracle_region }}-whisper.jitsi.net:443/streaming-whisper/ws/" | |||
jigasi_transcriber_whisper_websocket_url: "wss://{{ hcv_environment }}-{{ oracle_region }}-whisper.jitsi.net:443/whisper/ws/" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is totally unrelated and will breake existing deployments if it's not supported in live whisper.
No description provided.