From b4900341e40a4dde6ebef740a2df262b04064213 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Fri, 22 Nov 2024 14:07:54 -0500 Subject: [PATCH 1/2] docs: fix broken link (#2514) We need to check later why CI didn't fail with original PR that broke the link --- docs/docs/how-tos/deploy-self-hosted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/how-tos/deploy-self-hosted.md b/docs/docs/how-tos/deploy-self-hosted.md index 88d7c72e4..d0d3a3efe 100644 --- a/docs/docs/how-tos/deploy-self-hosted.md +++ b/docs/docs/how-tos/deploy-self-hosted.md @@ -74,7 +74,7 @@ If you want to run this quickly without setting up a separate Redis and Postgres * You need to replace `my-image` with the name of the image you built in the previous step (from `langgraph build`). and you should provide appropriate values for `REDIS_URI`, `DATABASE_URI`, and `LANGSMITH_API_KEY`. * If your application requires additional environment variables, you can pass them in a similar way. - * If using [Self-Hosted Enterprise](../concepts/deployment_options.md#self-hosted-enterprise, you must provide `LANGGRAPH_CLOUD_LICENSE_KEY` as an additional environment variable. + * If using [Self-Hosted Enterprise](../concepts/deployment_options.md#self-hosted-enterprise), you must provide `LANGGRAPH_CLOUD_LICENSE_KEY` as an additional environment variable. ### Using Docker Compose From 3351d4f6c5c3d5fcb048fd9d6f45bb52a2c57a4d Mon Sep 17 00:00:00 2001 From: Mingqi Hu Date: Sat, 23 Nov 2024 03:17:59 +0800 Subject: [PATCH 2/2] docs: fix typo (#2510) `python-dotenv` not `python-dot-env` Signed-off-by: Mingqi Co-authored-by: Eugene Yurtsev --- docs/docs/tutorials/langgraph-platform/local-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorials/langgraph-platform/local-server.md b/docs/docs/tutorials/langgraph-platform/local-server.md index a41333921..5778782e4 100644 --- a/docs/docs/tutorials/langgraph-platform/local-server.md +++ b/docs/docs/tutorials/langgraph-platform/local-server.md @@ -9,7 +9,7 @@ This is a quick start guide to help you get a LangGraph app up and running local ## Install the LangGraph CLI ```bash -pip install "langgraph-cli[inmem]==0.1.58" python-dot-env +pip install "langgraph-cli[inmem]==0.1.58" python-dotenv ``` ## 🌱 Create a LangGraph App