Skip to content

Commit

Permalink
chore: bump 0.9.1 (#207)
Browse files Browse the repository at this point in the history
* chore: bump 0.9.1

* docs

* fix lint
  • Loading branch information
langchain-infra authored Jan 23, 2025
1 parent 20d8d49 commit a4ce0fd
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 22 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.9.0
appVersion: "0.9.3"
version: 0.9.1
appVersion: "0.9.7"
14 changes: 8 additions & 6 deletions charts/langsmith/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# langsmith

![Version: 0.9.0](https://img.shields.io/badge/Version-0.9.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.3](https://img.shields.io/badge/AppVersion-0.9.3-informational?style=flat-square)
![Version: 0.9.1](https://img.shields.io/badge/Version-0.9.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.7](https://img.shields.io/badge/AppVersion-0.9.7-informational?style=flat-square)

Helm chart to deploy the langsmith application and all services it depends on.

Expand Down Expand Up @@ -152,23 +152,23 @@ For information on how to use this chart, up-to-date release notes, and other gu
| fullnameOverride | string | `""` | String to fully override `"langsmith.fullname"` |
| images.aceBackendImage.pullPolicy | string | `"IfNotPresent"` | |
| images.aceBackendImage.repository | string | `"docker.io/langchain/langsmith-ace-backend"` | |
| images.aceBackendImage.tag | string | `"0.9.3"` | |
| images.aceBackendImage.tag | string | `"0.9.7"` | |
| images.backendImage.pullPolicy | string | `"IfNotPresent"` | |
| images.backendImage.repository | string | `"docker.io/langchain/langsmith-backend"` | |
| images.backendImage.tag | string | `"0.9.3"` | |
| images.backendImage.tag | string | `"0.9.7"` | |
| images.clickhouseImage.pullPolicy | string | `"Always"` | |
| images.clickhouseImage.repository | string | `"docker.io/clickhouse/clickhouse-server"` | |
| images.clickhouseImage.tag | string | `"24.8"` | |
| images.frontendImage.pullPolicy | string | `"IfNotPresent"` | |
| images.frontendImage.repository | string | `"docker.io/langchain/langsmith-frontend"` | |
| images.frontendImage.tag | string | `"0.9.3"` | |
| images.frontendImage.tag | string | `"0.9.7"` | |
| images.imagePullSecrets | list | `[]` | Secrets with credentials to pull images from a private registry. Specified as name: value. |
| images.platformBackendImage.pullPolicy | string | `"IfNotPresent"` | |
| images.platformBackendImage.repository | string | `"docker.io/langchain/langsmith-go-backend"` | |
| images.platformBackendImage.tag | string | `"0.9.3"` | |
| images.platformBackendImage.tag | string | `"0.9.7"` | |
| images.playgroundImage.pullPolicy | string | `"IfNotPresent"` | |
| images.playgroundImage.repository | string | `"docker.io/langchain/langsmith-playground"` | |
| images.playgroundImage.tag | string | `"0.9.3"` | |
| images.playgroundImage.tag | string | `"0.9.7"` | |
| images.postgresImage.pullPolicy | string | `"IfNotPresent"` | |
| images.postgresImage.repository | string | `"docker.io/postgres"` | |
| images.postgresImage.tag | string | `"14.7"` | |
Expand Down Expand Up @@ -207,6 +207,8 @@ For information on how to use this chart, up-to-date release notes, and other gu
| config.oauth.oauthClientId | string | `""` | |
| config.oauth.oauthClientSecret | string | `""` | Client secret requires authType to be 'mixed' and hostname to be present |
| config.oauth.oauthIssuerUrl | string | `""` | |
| config.oauth.oauthScopes | string | `"email,profile,openid"` | |
| config.oauth.oauthSessionMaxSec | string | `"86400"` | |
| config.orgCreationDisabled | bool | `false` | Prevent organization creation. If using basic auth, this is set to true by default. |
| config.personalOrgsDisabled | bool | `false` | Disable personal orgs. Users will need to be invited to an org manually. If using basic auth, this is set to true by default. |
| config.settings | object | `{"redisRunsExpirySeconds":"43200"}` | Application Settings. These are used to tune the application |
Expand Down
2 changes: 1 addition & 1 deletion charts/langsmith/docker-compose/.env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Don't change this file. Instead, copy it to .env and change the values there. The default values will work out of the box as long as you provide your license key.
_LANGSMITH_IMAGE_VERSION=0.9.3 # Change to the desired Langsmith image version
_LANGSMITH_IMAGE_VERSION=0.9.7 # Change to the desired Langsmith image version
LANGSMITH_LICENSE_KEY=your-license-key # Change to your Langsmith license key
AUTH_TYPE=none # Set to oauth if you want to use OAuth2.0 with PKCE. Set to mixed for basic auth or OAuth2.0 with OAuth2.0 client secret
OAUTH_CLIENT_ID=your-client-id # Required if AUTH_TYPE=oauth or mixed with OAuth2.0 with OAuth2.0 client secret
Expand Down
18 changes: 10 additions & 8 deletions charts/langsmith/docker-compose/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
services:
langchain-playground:
image: langchain/langsmith-playground:${_LANGSMITH_IMAGE_VERSION:-0.9.3}
image: langchain/langsmith-playground:${_LANGSMITH_IMAGE_VERSION:-0.9.7}
ports:
- 3001:3001
environment:
- PORT=3001
- LANGCHAIN_ENV=local_docker
- LOG_LEVEL=${LOG_LEVEL:-info}
- GO_ENDPOINT=http://langchain-platform-backend:1986
- SMITH_BACKEND_ENDPOINT=${SMITH_BACKEND_ENDPOINT:-http://langchain-backend:1984}
langchain-frontend:
image: langchain/langsmith-frontend:${_LANGSMITH_IMAGE_VERSION:-0.9.3}
image: langchain/langsmith-frontend:${_LANGSMITH_IMAGE_VERSION:-0.9.7}
environment:
- VITE_BACKEND_AUTH_TYPE=${AUTH_TYPE:-none}
- VITE_BASIC_AUTH_ENABLED=${BASIC_AUTH_ENABLED:-false}
Expand All @@ -20,7 +22,7 @@ services:
- langchain-backend
- langchain-playground
langchain-ace-backend:
image: langchain/langsmith-ace-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.3}
image: langchain/langsmith-ace-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.7}
ports:
- 1987:1987
environment:
Expand All @@ -37,7 +39,7 @@ services:
- "-R"
- "src/python_worker.ts"
langchain-backend:
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.3}
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.7}
environment:
- PORT=1984
- LANGCHAIN_ENV=local_docker
Expand Down Expand Up @@ -88,7 +90,7 @@ services:
condition: service_completed_successfully
restart: always
langchain-platform-backend:
image: langchain/langsmith-go-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.3}
image: langchain/langsmith-go-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.7}
environment:
- PORT=1986
- LANGCHAIN_ENV=local_docker
Expand Down Expand Up @@ -120,7 +122,7 @@ services:
condition: service_completed_successfully
restart: always
langchain-queue:
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.3}
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.7}
environment:
- LANGCHAIN_ENV=local_docker
- GO_ENDPOINT=http://langchain-platform-backend:1986
Expand Down Expand Up @@ -221,7 +223,7 @@ services:
timeout: 2s
retries: 30
clickhouse-setup:
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.3}
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.7}
depends_on:
langchain-clickhouse:
condition: service_healthy
Expand All @@ -241,7 +243,7 @@ services:
"scripts/wait_for_clickhouse_and_migrate.sh"
]
postgres-setup:
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.3}
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.9.7}
depends_on:
langchain-db:
condition: service_healthy
Expand Down
2 changes: 2 additions & 0 deletions charts/langsmith/templates/config-map.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ data:
VITE_BACKEND_AUTH_TYPE: "mixed"
AUTH_TYPE: "mixed"
BASIC_AUTH_ENABLED: "false"
OAUTH_SCOPES: {{ .Values.config.oauth.oauthScopes }}
OAUTH_SESSION_MAX_SEC: {{ .Values.config.oauth.oauthSessionMaxSec | quote }}
{{- else if .Values.config.oauth.enabled }}
VITE_BACKEND_AUTH_TYPE: "oauth"
AUTH_TYPE: "oauth"
Expand Down
12 changes: 7 additions & 5 deletions charts/langsmith/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ images:
aceBackendImage:
repository: "docker.io/langchain/langsmith-ace-backend"
pullPolicy: IfNotPresent
tag: "0.9.3"
tag: "0.9.7"
backendImage:
repository: "docker.io/langchain/langsmith-backend"
pullPolicy: IfNotPresent
tag: "0.9.3"
tag: "0.9.7"
frontendImage:
repository: "docker.io/langchain/langsmith-frontend"
pullPolicy: IfNotPresent
tag: "0.9.3"
tag: "0.9.7"
platformBackendImage:
repository: "docker.io/langchain/langsmith-go-backend"
pullPolicy: IfNotPresent
tag: "0.9.3"
tag: "0.9.7"
playgroundImage:
repository: "docker.io/langchain/langsmith-playground"
pullPolicy: IfNotPresent
tag: "0.9.3"
tag: "0.9.7"
postgresImage:
repository: "docker.io/postgres"
pullPolicy: IfNotPresent
Expand Down Expand Up @@ -97,6 +97,8 @@ config:
# -- Client secret requires authType to be 'mixed' and hostname to be present
oauthClientSecret: ""
oauthIssuerUrl: ""
oauthScopes: "email,profile,openid" # Comma-separated list of scopes. We require at least 'email', 'profile', and 'openid'. Some OIDC providers require the 'offline_access' scope for refresh tokens.
oauthSessionMaxSec: "86400" # 24 hours. Maximum age of a session in seconds. Your session will attempt to refresh until the max age at which point you will be logged out.
# -- TTL configuration
# Optional. Used to set TTLS for longlived and shortlived objects.
ttl:
Expand Down

0 comments on commit a4ce0fd

Please sign in to comment.