diff --git a/package.json b/package.json index 86cf0d7b97..2f46a18ac1 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",