mirror of
https://github.com/langchain-ai/langsmith-sdk-christopher.git
synced 2026-07-19 12:24:38 -04:00
68812b258c
Updates terminology and packaging to push to `langsmith` (I think that makes sense vs. langsmith-sdk?) Updates from `LangChainPlusClient` to `Client` Updates CLI command to use `langsmith start/logs/etc.`
18 lines
315 B
YAML
18 lines
315 B
YAML
version: '3'
|
|
services:
|
|
ngrok:
|
|
image: ngrok/ngrok:latest
|
|
restart: unless-stopped
|
|
command:
|
|
- "start"
|
|
- "--all"
|
|
- "--config"
|
|
- "/etc/ngrok.yml"
|
|
volumes:
|
|
- ./ngrok_config.yaml:/etc/ngrok.yml
|
|
ports:
|
|
- 4040:4040
|
|
langchain-backend:
|
|
depends_on:
|
|
- ngrok
|