The knowledge sources don’t mention any specific “updated model links list” you can copy from; model download links are always provided directly by your Deepgram account representative, not published generically.
What the docs do show is where and how to use those links once you have them:
-
Docker / Podman (manual download): Put all .dg URLs from your rep into a model_links.txt file, then download them into a models directory with:
wget --directory-prefix models --input-file model_links.txt
and point your compose files at ../models.[Import STT deploy]
-
Kubernetes with Helm model manager (AWS EFS): Add each updated model link under engine.modelManager.models.add (or legacy links) in values.yaml:
engine:
modelManager:
models:
add:
- <https://link-to-model-1.dg>
- <https://link-to-model-2.dg>
Automatic model management is currently supported only for AWS EFS volumes.[Helm values]
-
AWS EKS quickstart example: Older docs show adding links under engine.modelManager.models.links in values.yaml.[AWS K8s deploy]