-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move docker-compose to helm repo
- Loading branch information
1 parent
035cee7
commit f2454a6
Showing
3 changed files
with
333 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# 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.8.12 # 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 | ||
OAUTH_ISSUER_URL=https://your-issuer-url # Required if AUTH_TYPE=oauth or mixed with OAuth2.0 with OAuth2.0 client secret | ||
OAUTH_CLIENT_SECRET=your-client-secret # Required if AUTH_TYPE=mixed with OAuth2.0 with OAuth2.0 client secret | ||
LANGSMITH_URL=http://localhost:1980 # Change to your hosted Langsmith URL. Required if AUTH_TYPE=mixed with OAuth2.0 client secret | ||
API_KEY_SALT=super # Change to your desired API key salt. Can be any random value. Must be set if AUTH_TYPE=oauth | ||
POSTGRES_DATABASE_URI=postgres:postgres@langchain-db:5432/postgres # Change to your database URI if using external postgres. Otherwise, leave it as is | ||
REDIS_DATABASE_URI=redis://langchain-redis:6379 # Change to your Redis URI if using external Redis. Otherwise, leave it as is | ||
LOG_LEVEL=warning # Change to your desired log level | ||
MAX_ASYNC_JOBS_PER_WORKER=10 # Change to your desired maximum async jobs per worker. We recommend 10/suggest spinning up more replicas of the queue worker if you need more throughput | ||
ASYNCPG_POOL_MAX_SIZE=3 # Change the PG pool size based off your pg instance/requirements. | ||
CLICKHOUSE_HOST=langchain-clickhouse # Change to your Clickhouse host if using external Clickhouse. Otherwise, leave it as is | ||
CLICKHOUSE_USER=default # Change to your Clickhouse user if needed | ||
CLICKHOUSE_DB=default # Change to your Clickhouse database if needed | ||
CLICKHOUSE_PORT=8123 # Change to your Clickhouse port if needed | ||
CLICKHOUSE_TLS=false # Change to true if you are using TLS to connect to Clickhouse. Otherwise, leave it as is | ||
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 14 days | ||
LONG_LIVED_TTL_SECONDS=34560000 # Set to your desired TTL for long-lived traces. Default is 400 days | ||
BLOB_STORAGE_ENABLED=false # Set to true if you want to enable blob storage | ||
BLOB_STORAGE_BUCKET_NAME=langsmith-blob-storage # Change to your desired blob storage bucket name | ||
BLOB_STORAGE_API_URL=https://s3.us-west-2.amazonaws.com # Change to your desired blob storage API URL | ||
BLOB_STORAGE_ACCESS_KEY=your-access-key # Change to your desired blob storage access key | ||
BLOB_STORAGE_ACCESS_KEY_SECRET=your-access-key-secret # Change to your desired blob storage access key secret | ||
CH_SEARCH_ENABLED=true # Set to false if you do not want to store tokenized inputs/outputs in clickhouse | ||
BASIC_AUTH_ENABLED=false # Set to true if you want to enable basic auth | ||
BASIC_AUTH_JWT_SECRET=your-jwt-secret # Change to your desired basic auth JWT secret | ||
INITIAL_ORG_ADMIN_EMAIL=your-email # Change to your desired initial org admin email. Only used if BASIC_AUTH_ENABLED=true | ||
INITIAL_ORG_ADMIN_PASSWORD=your-password # Change to your desired initial org admin password. Only used if BASIC_AUTH_ENABLED=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,275 @@ | ||
services: | ||
langchain-playground: | ||
image: langchain/langsmith-playground:${_LANGSMITH_IMAGE_VERSION:-0.8.12} | ||
ports: | ||
- 3001:3001 | ||
environment: | ||
- PORT=3001 | ||
- LANGCHAIN_ENV=local_docker | ||
- LOG_LEVEL=${LOG_LEVEL:-info} | ||
langchain-frontend: | ||
image: langchain/langsmith-frontend:${_LANGSMITH_IMAGE_VERSION:-0.8.12} | ||
environment: | ||
- VITE_BACKEND_AUTH_TYPE=${AUTH_TYPE:-none} | ||
- VITE_BASIC_AUTH_ENABLED=${BASIC_AUTH_ENABLED:-false} | ||
- VITE_OAUTH_CLIENT_ID=${OAUTH_CLIENT_ID} | ||
- VITE_OAUTH_ISSUER_URL=${OAUTH_ISSUER_URL} | ||
ports: | ||
- 1980:1980 | ||
depends_on: | ||
- langchain-backend | ||
- langchain-playground | ||
langchain-ace-backend: | ||
image: langchain/langsmith-ace-backend:${_LANGSMITH_IMAGE_VERSION:-0.8.12} | ||
ports: | ||
- 1987:1987 | ||
environment: | ||
- PORT=1987 | ||
command: | ||
- "deno" | ||
- "run" | ||
- "--unstable-worker-options" | ||
- "--allow-env" | ||
- "--allow-net=0.0.0.0:1987" | ||
- "--node-modules-dir" | ||
- "-R" | ||
- "src/main.ts" | ||
- "-R" | ||
- "src/python_worker.ts" | ||
langchain-backend: | ||
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.8.12} | ||
environment: | ||
- PORT=1984 | ||
- LANGCHAIN_ENV=local_docker | ||
- LANGSMITH_URL=${LANGSMITH_URL:-http://langchain-frontend:1980} | ||
- GO_ENDPOINT=http://langchain-platform-backend:1986 | ||
- SMITH_BACKEND_ENDPOINT=${SMITH_BACKEND_ENDPOINT:-http://langchain-backend:1984} | ||
- LANGSMITH_LICENSE_KEY=${LANGSMITH_LICENSE_KEY} | ||
- LOG_LEVEL=${LOG_LEVEL:-info} | ||
- AUTH_TYPE=${AUTH_TYPE:-none} | ||
- OAUTH_CLIENT_ID=${OAUTH_CLIENT_ID} | ||
- OAUTH_CLIENT_SECRET=${OAUTH_CLIENT_SECRET} | ||
- OAUTH_ISSUER_URL=${OAUTH_ISSUER_URL} | ||
- API_KEY_SALT=${API_KEY_SALT} | ||
- X_SERVICE_AUTH_JWT_SECRET=${API_KEY_SALT} | ||
- POSTGRES_DATABASE_URI=${POSTGRES_DATABASE_URI:-postgres:postgres@langchain-db:5432/postgres} | ||
- REDIS_DATABASE_URI=${REDIS_DATABASE_URI:-redis://langchain-redis:6379} | ||
- CLICKHOUSE_HOST=${CLICKHOUSE_HOST:-langchain-clickhouse} | ||
- CLICKHOUSE_USER=${CLICKHOUSE_USER:-default} | ||
- CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD:-password} | ||
- CLICKHOUSE_DB=${CLICKHOUSE_DB:-default} | ||
- CLICKHOUSE_PORT=${CLICKHOUSE_PORT:-8123} | ||
- CLICKHOUSE_TLS=${CLICKHOUSE_TLS:-false} | ||
- FF_ORG_CREATION_DISABLED=${ORG_CREATION_DISABLED:-false} | ||
- FF_TRACE_TIERS_ENABLED=${TTL_ENABLED:-true} | ||
- FF_UPGRADE_TRACE_TIER_ENABLED=${TTL_ENABLED:-true} | ||
- FF_S3_STORAGE_ENABLED=${BLOB_STORAGE_ENABLED:-false} | ||
- S3_BUCKET_NAME=${BLOB_STORAGE_BUCKET_NAME:-langsmith-s3-assets} | ||
- S3_RUN_MANIFEST_BUCKET_NAME=${BLOB_STORAGE_BUCKET_NAME:-langsmith-s3-assets} | ||
- S3_API_URL=${BLOB_STORAGE_API_URL:-https://s3.us-west-2.amazonaws.com} | ||
- S3_ACCESS_KEY=${BLOB_STORAGE_ACCESS_KEY} | ||
- S3_ACCESS_KEY_SECRET=${BLOB_STORAGE_ACCESS_KEY_SECRET} | ||
- FF_CH_SEARCH_ENABLED=${CH_SEARCH_ENABLED:-true} | ||
- BASIC_AUTH_ENABLED=${BASIC_AUTH_ENABLED:-false} | ||
- BASIC_AUTH_JWT_SECRET=${BASIC_AUTH_JWT_SECRET} | ||
- INITIAL_ORG_ADMIN_EMAIL=${INITIAL_ORG_ADMIN_EMAIL} | ||
- INITIAL_ORG_ADMIN_PASSWORD=${INITIAL_ORG_ADMIN_PASSWORD} | ||
ports: | ||
- 1984:1984 | ||
depends_on: | ||
langchain-db: | ||
condition: service_healthy | ||
langchain-redis: | ||
condition: service_healthy | ||
clickhouse-setup: | ||
condition: service_completed_successfully | ||
postgres-setup: | ||
condition: service_completed_successfully | ||
restart: always | ||
langchain-platform-backend: | ||
image: langchain/langsmith-go-backend:${_LANGSMITH_IMAGE_VERSION:-0.8.12} | ||
environment: | ||
- PORT=1986 | ||
- LANGCHAIN_ENV=local_docker | ||
- LANGSMITH_URL=${LANGSMITH_URL:-http://langchain-frontend:1980} | ||
- SMITH_BACKEND_ENDPOINT=${SMITH_BACKEND_ENDPOINT:-http://langchain-backend:1984} | ||
- LANGSMITH_LICENSE_KEY=${LANGSMITH_LICENSE_KEY} | ||
- OPENAI_API_KEY=${OPENAI_API_KEY} | ||
- LOG_LEVEL=${LOG_LEVEL:-warning} | ||
- AUTH_TYPE=${AUTH_TYPE:-none} | ||
- OAUTH_CLIENT_ID=${OAUTH_CLIENT_ID} | ||
- OAUTH_CLIENT_SECRET=${OAUTH_CLIENT_SECRET} | ||
- OAUTH_ISSUER_URL=${OAUTH_ISSUER_URL} | ||
- API_KEY_SALT=${API_KEY_SALT} | ||
- X_SERVICE_AUTH_JWT_SECRET=${API_KEY_SALT} | ||
- POSTGRES_DATABASE_URI=${POSTGRES_DATABASE_URI:-postgres:postgres@langchain-db:5432/postgres} | ||
- REDIS_DATABASE_URI=${REDIS_DATABASE_URI:-redis://langchain-redis:6379} | ||
- BASIC_AUTH_ENABLED=${BASIC_AUTH_ENABLED:-false} | ||
- BASIC_AUTH_JWT_SECRET=${BASIC_AUTH_JWT_SECRET} | ||
ports: | ||
- 1986:1986 | ||
depends_on: | ||
langchain-db: | ||
condition: service_healthy | ||
langchain-redis: | ||
condition: service_healthy | ||
clickhouse-setup: | ||
condition: service_completed_successfully | ||
postgres-setup: | ||
condition: service_completed_successfully | ||
restart: always | ||
langchain-queue: | ||
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.8.12} | ||
environment: | ||
- LANGCHAIN_ENV=local_docker | ||
- GO_ENDPOINT=http://langchain-platform-backend:1986 | ||
- SMITH_BACKEND_ENDPOINT=http://langchain-backend:1984 | ||
- LANGSMITH_LICENSE_KEY=${LANGSMITH_LICENSE_KEY} | ||
- LOG_LEVEL=${LOG_LEVEL:-info} | ||
- AUTH_TYPE=${AUTH_TYPE:-none} | ||
- OAUTH_CLIENT_ID=${OAUTH_CLIENT_ID} | ||
- OAUTH_ISSUER_URL=${OAUTH_ISSUER_URL} | ||
- API_KEY_SALT=${API_KEY_SALT} | ||
- X_SERVICE_AUTH_JWT_SECRET=${API_KEY_SALT} | ||
- POSTGRES_DATABASE_URI=${POSTGRES_DATABASE_URI:-postgres:postgres@langchain-db:5432/postgres} | ||
- REDIS_DATABASE_URI=${REDIS_DATABASE_URI:-redis://langchain-redis:6379} | ||
- CLICKHOUSE_HOST=${CLICKHOUSE_HOST:-langchain-clickhouse} | ||
- CLICKHOUSE_USER=${CLICKHOUSE_USER:-default} | ||
- CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD:-password} | ||
- CLICKHOUSE_DB=${CLICKHOUSE_DB:-default} | ||
- CLICKHOUSE_PORT=${CLICKHOUSE_PORT:-8123} | ||
- CLICKHOUSE_TLS=${CLICKHOUSE_TLS:-false} | ||
- FF_ORG_CREATION_DISABLED=${ORG_CREATION_DISABLED:-false} | ||
- FF_TRACE_TIERS_ENABLED=${TTL_ENABLED:-true} | ||
- FF_UPGRADE_TRACE_TIER_ENABLED=${TTL_ENABLED:-true} | ||
- FF_S3_STORAGE_ENABLED=${BLOB_STORAGE_ENABLED:-false} | ||
- S3_BUCKET_NAME=${BLOB_STORAGE_BUCKET_NAME:-langsmith-s3-assets} | ||
- S3_RUN_MANIFEST_BUCKET_NAME=${BLOB_STORAGE_BUCKET_NAME:-langsmith-s3-assets} | ||
- S3_API_URL=${BLOB_STORAGE_API_URL:-https://s3.us-west-2.amazonaws.com} | ||
- S3_ACCESS_KEY=${BLOB_STORAGE_ACCESS_KEY} | ||
- S3_ACCESS_KEY_SECRET=${BLOB_STORAGE_ACCESS_KEY_SECRET} | ||
- FF_CH_SEARCH_ENABLED=${CH_SEARCH_ENABLED:-true} | ||
- BASIC_AUTH_ENABLED=${BASIC_AUTH_ENABLED:-false} | ||
- BASIC_AUTH_JWT_SECRET=${BASIC_AUTH_JWT_SECRET} | ||
command: | ||
- "saq" | ||
- "app.workers.queues.single_queue_worker.settings" | ||
- "--quiet" | ||
depends_on: | ||
langchain-db: | ||
condition: service_healthy | ||
langchain-redis: | ||
condition: service_healthy | ||
clickhouse-setup: | ||
condition: service_completed_successfully | ||
postgres-setup: | ||
condition: service_completed_successfully | ||
restart: always | ||
langchain-db: | ||
image: postgres:14.7 | ||
command: | ||
[ | ||
"postgres", | ||
"-c", | ||
"log_min_messages=WARNING", | ||
"-c", | ||
"client_min_messages=WARNING", | ||
] | ||
environment: | ||
- POSTGRES_PASSWORD=postgres | ||
- POSTGRES_USER=postgres | ||
- POSTGRES_DB=postgres | ||
volumes: | ||
- langchain-db-data:/var/lib/postgresql/data | ||
ports: | ||
- 5433:5432 | ||
healthcheck: | ||
test: ["CMD", "pg_isready", "-U", "postgres"] | ||
interval: 2s | ||
timeout: 2s | ||
retries: 30 | ||
langchain-redis: | ||
image: redis:7 | ||
ports: | ||
- 63791:6379 | ||
volumes: | ||
- langchain-redis-data:/data | ||
healthcheck: | ||
test: ["CMD", "redis-cli", "ping"] | ||
interval: 2s | ||
timeout: 2s | ||
retries: 30 | ||
langchain-clickhouse: | ||
image: clickhouse/clickhouse-server:24.5 | ||
user: "101:101" | ||
restart: always | ||
environment: | ||
- CLICKHOUSE_DB=${CLICKHOUSE_DB:-default} | ||
- CLICKHOUSE_USER=${CLICKHOUSE_USER:-default} | ||
- CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD:-password} | ||
volumes: | ||
- langchain-clickhouse-data:/var/lib/clickhouse | ||
- ./users.xml:/etc/clickhouse-server/users.d/users.xml | ||
ports: | ||
- 8124:8123 | ||
- 9001:9000 | ||
healthcheck: | ||
test: ["CMD", "clickhouse-client", "--query", "SELECT 1"] | ||
interval: 2s | ||
timeout: 2s | ||
retries: 30 | ||
clickhouse-setup: | ||
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.8.12} | ||
depends_on: | ||
langchain-clickhouse: | ||
condition: service_healthy | ||
restart: "on-failure:10" | ||
environment: | ||
- CLICKHOUSE_HOST=${CLICKHOUSE_HOST:-langchain-clickhouse} | ||
- CLICKHOUSE_USER=${CLICKHOUSE_USER:-default} | ||
- CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD:-password} | ||
- CLICKHOUSE_DB=${CLICKHOUSE_DB:-default} | ||
- CLICKHOUSE_PORT=${CLICKHOUSE_PORT:-8123} | ||
- CLICKHOUSE_NATIVE_PORT=${CLICKHOUSE_NATIVE_PORT:-9000} | ||
- CLICKHOUSE_TLS=${CLICKHOUSE_TLS:-false} | ||
command: | ||
[ | ||
"bash", | ||
"scripts/wait_for_clickhouse_and_migrate.sh" | ||
] | ||
postgres-setup: | ||
image: langchain/langsmith-backend:${_LANGSMITH_IMAGE_VERSION:-0.8.12} | ||
depends_on: | ||
langchain-db: | ||
condition: service_healthy | ||
environment: | ||
- LANGCHAIN_ENV=local_docker | ||
- LANGSMITH_LICENSE_KEY=${LANGSMITH_LICENSE_KEY} | ||
- OPENAI_API_KEY=${OPENAI_API_KEY} | ||
- LOG_LEVEL=${LOG_LEVEL:-warning} | ||
- AUTH_TYPE=${AUTH_TYPE:-none} | ||
- OAUTH_CLIENT_ID=${OAUTH_CLIENT_ID} | ||
- OAUTH_ISSUER_URL=${OAUTH_ISSUER_URL} | ||
- API_KEY_SALT=${API_KEY_SALT} | ||
- POSTGRES_DATABASE_URI=${POSTGRES_DATABASE_URI:-postgres:postgres@langchain-db:5432/postgres} | ||
- REDIS_DATABASE_URI=${REDIS_DATABASE_URI:-redis://langchain-redis:6379} | ||
- MAX_ASYNC_JOBS_PER_WORKER=${MAX_ASYNC_JOBS_PER_WORKER:-10} | ||
- ASYNCPG_POOL_MAX_SIZE=${ASYNCPG_POOL_MAX_SIZE:-3} | ||
- CLICKHOUSE_HOST=${CLICKHOUSE_HOST:-langchain-clickhouse} | ||
- CLICKHOUSE_USER=${CLICKHOUSE_USER:-default} | ||
- CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD:-password} | ||
- CLICKHOUSE_DB=${CLICKHOUSE_DB:-default} | ||
- CLICKHOUSE_PORT=${CLICKHOUSE_PORT:-8123} | ||
- CLICKHOUSE_NATIVE_PORT=${CLICKHOUSE_NATIVE_PORT:-9000} | ||
- CLICKHOUSE_TLS=${CLICKHOUSE_TLS:-false} | ||
restart: "on-failure:10" | ||
command: | ||
[ | ||
"bash", | ||
"-c", | ||
"alembic upgrade head", | ||
] | ||
volumes: | ||
langchain-db-data: | ||
langchain-redis-data: | ||
langchain-clickhouse-data: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<clickhouse> | ||
<users> | ||
<default> | ||
<access_management>1</access_management> | ||
<named_collection_control>1</named_collection_control> | ||
<show_named_collections>1</show_named_collections> | ||
<show_named_collections_secrets>1</show_named_collections_secrets> | ||
<profile>default</profile> | ||
</default> | ||
</users> | ||
<profiles> | ||
<default> | ||
<async_insert>1</async_insert> | ||
<async_insert_max_data_size>2000000</async_insert_max_data_size> | ||
<wait_for_async_insert>0</wait_for_async_insert> | ||
<parallel_view_processing>1</parallel_view_processing> | ||
<allow_simdjson>0</allow_simdjson> | ||
<lightweight_deletes_sync>0</lightweight_deletes_sync> | ||
</default> | ||
</profiles> | ||
</clickhouse> |