From 7bd79c2509d285ff0f23d58a9a71aee69c09cd05 Mon Sep 17 00:00:00 2001 From: Andrew Nguonly Date: Fri, 10 Jan 2025 15:24:38 -0800 Subject: [PATCH] docs: Add docs for `LANGCHAIN_ENDPOINT` for self-hosted deployments (#2988) @langchain-infra, is this correct? Is this needed or is it redundant/unnecessary? --- docs/docs/how-tos/deploy-self-hosted.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/docs/how-tos/deploy-self-hosted.md b/docs/docs/how-tos/deploy-self-hosted.md index d0d3a3efe..d2e3158ed 100644 --- a/docs/docs/how-tos/deploy-self-hosted.md +++ b/docs/docs/how-tos/deploy-self-hosted.md @@ -29,6 +29,7 @@ You will eventually need to pass in the following environment variables to the L - `DATABASE_URI`: Postgres connection details. Postgres will be used to store assistants, threads, runs, persist thread state and long term memory, and to manage the state of the background task queue with 'exactly once' semantics. - `LANGSMITH_API_KEY`: (If using [Self-Hosted Lite](../concepts/deployment_options.md#self-hosted-lite)) LangSmith API key. This will be used to authenticate ONCE at server start up. - `LANGGRAPH_CLOUD_LICENSE_KEY`: (If using [Self-Hosted Enterprise](../concepts/deployment_options.md#self-hosted-enterprise)) LangGraph Platform license key. This will be used to authenticate ONCE at server start up. +- `LANGCHAIN_ENDPOINT`: To send traces to a [self-hosted LangSmith](https://docs.smith.langchain.com/self_hosting) instance, set `LANGCHAIN_ENDPOINT` to the hostname of the self-hosted LangSmith instance. ## Build the Docker Image