Skip to content

Commit

Permalink
Merge pull request #27 from bat-bs/librechat-v0.5.0
Browse files Browse the repository at this point in the history
Librechat v0.5.0
  • Loading branch information
hofq authored Aug 14, 2024
2 parents c737d67 + 9040139 commit 3198efc
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions charts/librechat-rag-api/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.4
version: 0.1.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -28,6 +28,6 @@ home: https://blue-atlas.de

dependencies:
- name: postgresql
version: "15.5.5"
version: "15.5.21"
condition: postgresql.enabled
repository: https://charts.bitnami.com/bitnami
2 changes: 2 additions & 0 deletions charts/librechat-rag-api/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ metadata:
name: {{ include "rag.fullname" . }}
labels:
{{- include "rag.labels" . | nindent 4 }}
annotations:
{{ .Values.service.annotations | toYaml | indent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
Expand Down
5 changes: 2 additions & 3 deletions charts/librechat-rag-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@
# provide context-aware responses based on user-uploaded files
rag:
enabled: true
# Currently only lite is supported. This allows leveraging RAGs from Remote Endpoint like azure or
mode: lite
existingSecret: ''
configEnv:
DB_PORT: '5432'
EMBEDDINGS_PROVIDER: openai

image:
repository: danny-avila/librechat-rag-api-dev # -lite will be added if mode is lite
repository: danny-avila/librechat-rag-api-dev-lite # there is rag-api-dev and rag-api-dev-lite. currently only lite is docuimented
registry: ghcr.io
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
Expand Down Expand Up @@ -51,6 +49,7 @@ securityContext: {}
service:
type: ClusterIP
port: 8000
annotations: {}


resources: {}
Expand Down
8 changes: 4 additions & 4 deletions charts/librechat/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,28 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.4.4
version: 1.5.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.

# renovate: image=ghcr.io/danny-avila/librechat
appVersion: "v0.7.3-rc1"
appVersion: "v0.7.4"

home: https://blue-atlas.de

dependencies:
- name: mongodb
version: "15.6.6"
version: "15.6.18"
condition: mongodb.enabled
repository: "https://charts.bitnami.com/bitnami"
- name: meilisearch
version: "0.7.0"
condition: meilisearch.enabled
repository: "https://meilisearch.github.io/meilisearch-kubernetes"
- name: librechat-rag-api
version: "0.1.4"
version: "0.1.5"
condition: librechat-rag-api.enabled
repository: file://../librechat-rag-api #"https://charts.blue-atlas.de"
2 changes: 2 additions & 0 deletions charts/librechat/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ metadata:
name: {{ include "librechat.fullname" . }}
labels:
{{- include "librechat.labels" . | nindent 4 }}
annotations:
{{ .Values.service.annotations | toYaml | indent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
Expand Down
1 change: 1 addition & 0 deletions charts/librechat/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ securityContext:
service:
type: ClusterIP
port: 3080
annotations: {}

ingress:
enabled: true
Expand Down

0 comments on commit 3198efc

Please sign in to comment.