Files
langsmith-sdk-christopher/python/langsmith/cli/docker-compose.ngrok.yaml
T
Zander Chase 68812b258c Change to LangSmith Package (#62)
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.`
2023-06-26 16:08:39 -07:00

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