Skip to content

Commit

Permalink
chore: Update npm scripts for LLM deployment
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
simlarsen committed Jun 28, 2024
1 parent 9a86978 commit f585ffe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit f585ffe

Please # to comment.