Skip to content

Commit

Permalink
Merge pull request #87 from langchain-ai/infra/release-0.4.4
Browse files Browse the repository at this point in the history
fix: release 0.4.4
  • Loading branch information
langchain-infra authored Apr 15, 2024
2 parents 8d0a202 + 519d87c commit ac9d348
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 9 deletions.
4 changes: 2 additions & 2 deletions charts/langsmith/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ maintainers:
email: [email protected]
description: Helm chart to deploy the langsmith application and all services it depends on.
type: application
version: 0.4.3
appVersion: "0.2.11"
version: 0.4.4
appVersion: "0.2.23"
6 changes: 6 additions & 0 deletions charts/langsmith/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,12 @@ Template containing common environment variables that are used by several servic
secretKeyRef:
name: {{ include "langsmith.secretsName" . }}
key: openai_api_key
- name: INGESTION_QUEUE
value: default
- name: ADHOC_QUEUE
value: default
- name: RUN_RULES_QUEUE
value: default
{{- end }}

{{- define "backend.serviceAccountName" -}}
Expand Down
30 changes: 23 additions & 7 deletions charts/langsmith/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ images:
backendImage:
repository: "docker.io/langchain/langsmith-backend"
pullPolicy: IfNotPresent
tag: "0.2.11"
tag: "0.2.23"
frontendImage:
repository: "docker.io/langchain/langsmith-frontend"
pullPolicy: IfNotPresent
tag: "0.2.11"
tag: "0.2.23"
playgroundImage:
repository: "docker.io/langchain/langsmith-playground"
pullPolicy: IfNotPresent
tag: "0.2.11"
tag: "0.2.23"
postgresImage:
repository: "docker.io/postgres"
pullPolicy: IfNotPresent
Expand Down Expand Up @@ -84,7 +84,20 @@ backend:
# requests:
# cpu: 200m
# memory: 500Mi
command: []
command:
- "uvicorn"
- "app.main:app"
- "--host"
- "0.0.0.0"
- "--port"
- "$(PORT)"
- "--log-level"
- "$(LOG_LEVEL)"
- "--loop"
- "uvloop"
- "--http"
- "httptools"
- "--no-access-log"
extraContainerConfig: {}
extraEnv: []
sidecars: []
Expand Down Expand Up @@ -241,7 +254,8 @@ frontend:
# requests:
# cpu: 200m
# memory: 500Mi
command: []
command:
- "/entrypoint.sh"
extraContainerConfig: {}
extraEnv: []
sidecars: []
Expand Down Expand Up @@ -288,7 +302,9 @@ playground:
# requests:
# cpu: 200m
# memory: 500Mi
command: []
command:
- "node"
- "./scripts/run-playground-docker.mjs"
extraContainerConfig: {}
extraEnv: []
sidecars: []
Expand Down Expand Up @@ -389,7 +405,7 @@ queue:
# memory: 2000Mi
command:
- "saq"
- "app.async_worker.settings"
- "app.workers.queues.single_queue_worker.settings"
- "--quiet"
extraContainerConfig: {}
extraEnv: []
Expand Down

0 comments on commit ac9d348

Please sign in to comment.