From f3cd89e4684bd2516a7f553fb06a310817411c75 Mon Sep 17 00:00:00 2001 From: Henry Chen <1474479+chenhunghan@users.noreply.github.com> Date: Sat, 26 Aug 2023 09:56:01 +0300 Subject: [PATCH] Move to org `ialacol` (#4) Signed-off-by: Hung-Han (Henry) Chen --- README.md | 6 +++--- charts/text-inference-batcher-nodejs/Chart.yaml | 4 ++-- charts/text-inference-batcher-nodejs/values.yaml | 2 +- package-lock.json | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 635847e..6526a0e 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ ### Run in Container -There is an image host on [ghcr.io](https://github.com/chenhunghan/text-inference-batcher/pkgs/container/text-inference-batcher-nodejs) +There is an image host on [ghcr.io](https://github.com/ialacol/text-inference-batcher/pkgs/container/text-inference-batcher-nodejs) ```sh export UPSTREAMS="http://localhost:8080,http://localhost:8081" # List of OpenAI-compatible upstreams separated by comma -docker run --rm -it -p 8000:8000 -e UPSTREAMS=$UPSTREAMS ghcr.io/chenhunghan/text-inference-batcher-nodejs:latest # node.js version +docker run --rm -it -p 8000:8000 -e UPSTREAMS=$UPSTREAMS ghcr.io/ialacol/text-inference-batcher-nodejs:latest # node.js version ``` ### Kubernetes @@ -42,7 +42,7 @@ helm install stable-platypus2 ialacol/ialacol \ Add `text-inference-batcher` pointing to upstreams. ```sh -helm repo add text-inference-batcher +helm repo add text-inference-batcher helm repo update helm install tib text-inference-batcher/text-inference-batcher-nodejs \ --set deployment.env.UPSTREAMS="http://llama-2:8000,http://orca-mini:8000,http://stable-platypus2:8000" diff --git a/charts/text-inference-batcher-nodejs/Chart.yaml b/charts/text-inference-batcher-nodejs/Chart.yaml index c15940d..1ed58b1 100644 --- a/charts/text-inference-batcher-nodejs/Chart.yaml +++ b/charts/text-inference-batcher-nodejs/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 -appVersion: 0.0.1 +appVersion: 0.0.2 description: A Helm chart for text-inference-batcher with node.js runtime name: text-inference-batcher-nodejs type: application -version: 0.0.1 +version: 0.0.2 diff --git a/charts/text-inference-batcher-nodejs/values.yaml b/charts/text-inference-batcher-nodejs/values.yaml index a877b6c..6c6a89d 100644 --- a/charts/text-inference-batcher-nodejs/values.yaml +++ b/charts/text-inference-batcher-nodejs/values.yaml @@ -1,7 +1,7 @@ replicas: 1 deployment: - image: ghcr.io/chenhunghan/text-inference-batcher-nodejs:latest + image: ghcr.io/ialacol/text-inference-batcher-nodejs:latest env: # upstream url separated by comman. e.g. "http://llama-2-7b-0:8000,http://llama-2-7b-1:8000,http://llama-2-13b-0:8000" UPSTREAMS: "" diff --git a/package-lock.json b/package-lock.json index e7e8190..fee401a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -43,7 +43,7 @@ "@types/node": "^20.4.10" }, "engines": { - "node": ">=18.0.0", + "node": ">=20.0.0", "npm": ">=9.0.0" } },