Add langsmith vars to dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
@@ -12,6 +12,11 @@ ENV HOME=/home/user \
|
|
12 |
|
13 |
ENV UVICORN_WS_PROTOCOL=websockets
|
14 |
|
|
|
|
|
|
|
|
|
|
|
15 |
# Set the working directory
|
16 |
WORKDIR $HOME/app
|
17 |
|
|
|
12 |
|
13 |
ENV UVICORN_WS_PROTOCOL=websockets
|
14 |
|
15 |
+
# Set Langsmith environment variables with defaults
|
16 |
+
ENV LANGSMITH_TRACING=true \
|
17 |
+
LANGSMITH_ENDPOINT="https://api.smith.langchain.com" \
|
18 |
+
LANGSMITH_PROJECT="inference-endpoints"
|
19 |
+
|
20 |
# Set the working directory
|
21 |
WORKDIR $HOME/app
|
22 |
|