Skip to content

Commit

Permalink
feat: bump docker compose to 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
langchain-infra committed May 11, 2024
1 parent 6ef79f3 commit 8e90e36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions python/langsmith/cli/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
version: "4"
services:
langchain-playground:
image: langchain/langsmith-playground:${_LANGSMITH_IMAGE_VERSION:-0.3.4}
image: langchain/langsmith-playground:${_LANGSMITH_IMAGE_VERSION:-0.3.5}
ports:
- 3001:3001
langchain-frontend:
image: langchain/langsmith-frontend:${_LANGSMITH_IMAGE_VERSION:-0.3.4}
image: langchain/langsmith-frontend:${_LANGSMITH_IMAGE_VERSION:-0.3.5}
environment:
- VITE_BACKEND_AUTH_TYPE=${AUTH_TYPE:-none}
- VITE_OAUTH_CLIENT_ID=${OAUTH_CLIENT_ID}
Expand All @@ -16,7 +16,7 @@ services:
- langchain-backend
- langchain-playground
langchain-backend:
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.3.4}
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.3.5}
environment:
- PORT=1984
- LANGCHAIN_ENV=local_docker
Expand Down Expand Up @@ -49,7 +49,7 @@ services:
condition: service_completed_successfully
restart: always
langchain-platform-backend:
image: langchain/langsmith-go-backend:${_LANGSMITH_IMAGE_VERSION:-0.3.4}
image: langchain/langsmith-go-backend:${_LANGSMITH_IMAGE_VERSION:-0.3.5}
environment:
- PORT=1986
- LANGCHAIN_ENV=local_docker
Expand Down Expand Up @@ -163,7 +163,7 @@ services:
timeout: 2s
retries: 30
clickhouse-setup:
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.3.4}
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.3.5}
depends_on:
langchain-clickhouse:
condition: service_healthy
Expand All @@ -182,7 +182,7 @@ services:
"migrate -source file://clickhouse/migrations -database 'clickhouse://${CLICKHOUSE_HOST}:${CLICKHOUSE_NATIVE_PORT}?username=${CLICKHOUSE_USER}&password=${CLICKHOUSE_PASSWORD}&database=${CLICKHOUSE_DB}&x-multi-statement=true&x-migrations-table-engine=MergeTree' up",
]
postgres-setup:
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.3.4}
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.3.5}
depends_on:
langchain-db:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langsmith"
version = "0.1.56"
version = "0.1.57"
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
authors = ["LangChain <support@langchain.dev>"]
license = "MIT"
Expand Down

0 comments on commit 8e90e36

Please sign in to comment.