From 32b9fa57685b52410dcb557741a9fc6d806de51d Mon Sep 17 00:00:00 2001 From: Corey Date: Mon, 22 Dec 2025 14:09:51 -0800 Subject: [PATCH 1/2] Download latest released dl_checkpoints.sh --- ai/orchestrators/models-download.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ai/orchestrators/models-download.mdx b/ai/orchestrators/models-download.mdx index ea10a356..95119b39 100644 --- a/ai/orchestrators/models-download.mdx +++ b/ai/orchestrators/models-download.mdx @@ -35,7 +35,8 @@ through downloading the **recommended** models for Livepeer AI. ```bash cd ~/.lpData - curl -s https://raw.githubusercontent.com/livepeer/ai-worker/main/runner/dl_checkpoints.sh | bash -s -- --beta + latest=$(curl -s https://api.github.com/repos/livepeer/ai-runner/releases/latest | grep '"tag_name":' | cut -d'"' -f4) + curl -s https://raw.githubusercontent.com/livepeer/ai-worker/tags/$latest/runner/dl_checkpoints.sh | bash -s -- --beta ``` This command downloads the recommended models for Livepeer AI and stores them in your machine's `~/.lpData/models` directory. To obtain a complete set of models, omit the `--beta` flag. This will require additional disk space. From cee28f6b6f69ab13f5e68d5d8fcdaf4e02eadfef Mon Sep 17 00:00:00 2001 From: Corey Date: Mon, 22 Dec 2025 14:16:09 -0800 Subject: [PATCH 2/2] ai-workers -> ai-runner --- ai/orchestrators/models-download.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai/orchestrators/models-download.mdx b/ai/orchestrators/models-download.mdx index 95119b39..949201e7 100644 --- a/ai/orchestrators/models-download.mdx +++ b/ai/orchestrators/models-download.mdx @@ -36,7 +36,7 @@ through downloading the **recommended** models for Livepeer AI. ```bash cd ~/.lpData latest=$(curl -s https://api.github.com/repos/livepeer/ai-runner/releases/latest | grep '"tag_name":' | cut -d'"' -f4) - curl -s https://raw.githubusercontent.com/livepeer/ai-worker/tags/$latest/runner/dl_checkpoints.sh | bash -s -- --beta + curl -s https://raw.githubusercontent.com/livepeer/ai-runner/tags/$latest/runner/dl_checkpoints.sh | bash -s -- --beta ``` This command downloads the recommended models for Livepeer AI and stores them in your machine's `~/.lpData/models` directory. To obtain a complete set of models, omit the `--beta` flag. This will require additional disk space.