Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/pr-chart-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
branches: [main]
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped
paths:
- helm-charts/**
- "helm-charts/**"
- "!**.md"
workflow_dispatch:

concurrency:
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ repos:
name: Unused noqa

- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 6.0.1
hooks:
- id: isort

- repo: https://github.com/PyCQA/docformatter
rev: 06907d0
rev: v1.7.7
hooks:
- id: docformatter
args: [
Expand All @@ -82,7 +82,7 @@ repos:
- [email protected]

- repo: https://github.com/psf/black.git
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black
files: (.*\.py)$
Expand All @@ -96,15 +96,15 @@ repos:
- black==24.3.0

- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.1
hooks:
- id: codespell
args: [-w]
additional_dependencies:
- tomli

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.6
rev: v0.12.2
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --no-cache]
2 changes: 1 addition & 1 deletion helm-charts/common/embedding-usvc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The OPEA embedding microservice depends on one of the following backend services

- multimodal embedding BridgeTower: please refer to [mm-embedding](../mm-embedding) chart for more information.

- prediction guard: please refert to external [Prediction Guard](https://predictionguard.com) for more information.
- prediction guard: please refer to external [Prediction Guard](https://predictionguard.com) for more information.

First, you need to get the dependent service deployed, i.e. deploy the `tei` helm chart, `mm-embedding` helm chart, or contact prediction guard to get access info.

Expand Down
Loading