From f585ffe7565c93e4fb13c8a8cf6c6363ccb49335 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Fri, 28 Jun 2024 11:33:48 +0100 Subject: [PATCH] chore: Update npm scripts for LLM deployment The npm scripts for starting, building, and force-building the LLM (Llama Models) service have been updated in the package.json file. The new scripts use the docker-compose.llm.yml file instead of the docker-compose.ai.yml file. This change ensures that the correct configuration is used for deploying the LLM service. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 86cf0d7b977..2f46a18ac18 100644 --- a/package.json +++ b/package.json @@ -42,9 +42,9 @@ "fix": "npm run fix-lint", "status-check": "bash ./Tests/Scripts/status-check.sh $npm_config_services", "start": "export $(grep -v '^#' config.env | xargs) && docker compose up --remove-orphans -d $npm_config_services && npm run status-check", - "start-ai": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.ai.yml up --remove-orphans -d $npm_config_services", - "build-ai": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.ai.yml build $npm_config_services", - "force-build-ai": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.ai.yml build --no-cache $npm_config_services", + "start-llm": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.llm.yml up --remove-orphans -d $npm_config_services", + "build-llm": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.llm.yml build $npm_config_services", + "force-build-llm": "npm run prerun && export $(grep -v '^#' config.env | xargs) && docker compose -f docker-compose.llm.yml build --no-cache $npm_config_services", "ps": "export $(grep -v '^#' config.env | xargs) && docker compose ps", "save-logs": "export $(grep -v '^#' config.env | xargs) && docker compose logs --tail=100000 $npm_config_services > logs.txt", "logs": "export $(grep -v '^#' config.env | xargs) && docker compose logs --tail=100 -f $npm_config_services",