From 16f08f58c24f47bafda4a0e8a7df8d2dace79403 Mon Sep 17 00:00:00 2001 From: infra Date: Thu, 26 Sep 2024 20:21:37 -0400 Subject: [PATCH] chore: bump sdk 0.7.39 --- python/langsmith/cli/.env.example | 4 +++- python/langsmith/cli/docker-compose.yaml | 20 +++++++++++++------- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/python/langsmith/cli/.env.example b/python/langsmith/cli/.env.example index 4a991c20c..1851958b2 100644 --- a/python/langsmith/cli/.env.example +++ b/python/langsmith/cli/.env.example @@ -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.7.7 # Change to the desired Langsmith image version +_LANGSMITH_IMAGE_VERSION=0.7.39 # 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. Set to mixed for basic auth. OAUTH_CLIENT_ID=your-client-id # Required if AUTH_TYPE=oauth @@ -18,6 +18,8 @@ CLICKHOUSE_TLS=false # Change to true if you are using TLS to connect to Clickho CLICKHOUSE_PASSWORD=password # Change to your Clickhouse password if needed CLICKHOUSE_NATIVE_PORT=9000 # Change to your Clickhouse native port if needed ORG_CREATION_DISABLED=false # Set to true if you want to disable org creation +WORKSPACE_SCOPE_ORG_INVITES_ENABLED=false # Set to true if you want to disable workspace scope org invites +PERSONAL_ORGS_DISABLED=false # Set to true if you want to disable personal orgs TTL_ENABLED=true # Set to true if you want to enable TTL for your data SHORT_LIVED_TTL_SECONDS=1209600 # Set to your desired TTL for short-lived traces. Default is 1 day LONG_LIVED_TTL_SECONDS=34560000 # Set to your desired TTL for long-lived traces. Default is 400 days diff --git a/python/langsmith/cli/docker-compose.yaml b/python/langsmith/cli/docker-compose.yaml index 2d4a8b4e9..71b36926a 100644 --- a/python/langsmith/cli/docker-compose.yaml +++ b/python/langsmith/cli/docker-compose.yaml @@ -1,11 +1,11 @@ version: "4" services: langchain-playground: - image: langchain/langsmith-playground:${_LANGSMITH_IMAGE_VERSION:-0.7.7} + image: langchain/langsmith-playground:${_LANGSMITH_IMAGE_VERSION:-0.7.39} ports: - 3001:3001 langchain-frontend: - image: langchain/langsmith-frontend:${_LANGSMITH_IMAGE_VERSION:-0.7.7} + image: langchain/langsmith-frontend:${_LANGSMITH_IMAGE_VERSION:-0.7.39} environment: - VITE_BACKEND_AUTH_TYPE=${AUTH_TYPE:-none} - VITE_OAUTH_CLIENT_ID=${OAUTH_CLIENT_ID} @@ -16,7 +16,7 @@ services: - langchain-backend - langchain-playground langchain-backend: - image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.7.7} + image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.7.39} environment: - PORT=1984 - LANGCHAIN_ENV=local_docker @@ -64,7 +64,7 @@ services: condition: service_completed_successfully restart: always langchain-platform-backend: - image: langchain/langsmith-go-backend:${_LANGSMITH_IMAGE_VERSION:-0.7.7} + image: langchain/langsmith-go-backend:${_LANGSMITH_IMAGE_VERSION:-0.7.39} environment: - PORT=1986 - LANGCHAIN_ENV=local_docker @@ -93,7 +93,7 @@ services: condition: service_completed_successfully restart: always langchain-queue: - image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.7.7} + image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.7.39} environment: - LANGCHAIN_ENV=local_docker - GO_ENDPOINT=http://langchain-platform-backend:1986 @@ -168,6 +168,12 @@ services: - 63791:6379 volumes: - langchain-redis-data:/data + command: + [ + "redis-server", + "--requirepass", + "password" + ] healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 2s @@ -193,7 +199,7 @@ services: timeout: 2s retries: 30 clickhouse-setup: - image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.7.7} + image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.7.39} depends_on: langchain-clickhouse: condition: service_healthy @@ -212,7 +218,7 @@ services: "scripts/wait_for_clickhouse_and_migrate.sh" ] postgres-setup: - image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.7.7} + image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.7.39} depends_on: langchain-db: condition: service_healthy