This is an automated email from the ASF dual-hosted git repository.
jin pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-ai.git
from e12a0bb docs(llm): add quick_start.md for UI usage (#196)
add a316258 feat(llm): support Docker & K8s deployment way (#195)
No new revisions were added by this update.
Summary of changes:
.gitattributes | 1 +
.licenserc.yaml | 3 +-
docker/Dockerfile.llm | 22 ++++
docker/charts/hg-llm/.helmignore | 22 ++++
docker/charts/hg-llm/Chart.yaml | 24 ++++
docker/charts/hg-llm/templates/NOTES.txt | 22 ++++
docker/charts/hg-llm/templates/_helpers.tpl | 62 ++++++++++
docker/charts/hg-llm/templates/deployment.yaml | 78 +++++++++++++
docker/charts/hg-llm/templates/hpa.yaml | 32 ++++++
docker/charts/hg-llm/templates/ingress.yaml | 43 +++++++
docker/charts/hg-llm/templates/service.yaml | 18 +++
docker/charts/hg-llm/templates/serviceaccount.yaml | 13 +++
.../hg-llm/templates/tests/test-connection.yaml | 15 +++
docker/charts/hg-llm/values.yaml | 126 +++++++++++++++++++++
docker/docker-compose-llm.yml | 12 ++
hugegraph-llm/setup.py | 1 +
scripts/build_llm_image.sh | 29 +++++
17 files changed, 522 insertions(+), 1 deletion(-)
create mode 100644 docker/Dockerfile.llm
create mode 100644 docker/charts/hg-llm/.helmignore
create mode 100644 docker/charts/hg-llm/Chart.yaml
create mode 100644 docker/charts/hg-llm/templates/NOTES.txt
create mode 100644 docker/charts/hg-llm/templates/_helpers.tpl
create mode 100644 docker/charts/hg-llm/templates/deployment.yaml
create mode 100644 docker/charts/hg-llm/templates/hpa.yaml
create mode 100644 docker/charts/hg-llm/templates/ingress.yaml
create mode 100644 docker/charts/hg-llm/templates/service.yaml
create mode 100644 docker/charts/hg-llm/templates/serviceaccount.yaml
create mode 100644 docker/charts/hg-llm/templates/tests/test-connection.yaml
create mode 100644 docker/charts/hg-llm/values.yaml
create mode 100644 docker/docker-compose-llm.yml
create mode 100644 scripts/build_llm_image.sh