From 00c1b6a2b058802fd52f5ff08df925e72cee7471 Mon Sep 17 00:00:00 2001 From: Isaac Francisco <78627776+isahers1@users.noreply.github.com> Date: Fri, 9 Aug 2024 16:43:03 -0700 Subject: [PATCH] callouts (#1269) --- docs/docs/cloud/deployment/setup.md | 4 ++++ docs/docs/cloud/deployment/setup_pyproject.md | 3 +++ 2 files changed, 7 insertions(+) diff --git a/docs/docs/cloud/deployment/setup.md b/docs/docs/cloud/deployment/setup.md index 3a008822f..170e19394 100644 --- a/docs/docs/cloud/deployment/setup.md +++ b/docs/docs/cloud/deployment/setup.md @@ -7,6 +7,10 @@ This walkthrough is based on [this repository](https://github.com/langchain-ai/l !!! tip "Setup with pyproject.toml" If you prefer using poetry for dependency management, check out [this how-to guide](./setup_pyproject.md) on using `pyproject.toml` for LangGraph Cloud. +!!! tip "Setup with a Monorepo" + If you are interested in deploying a graph located inside a monorepo, take a look at [this](https://github.com/langchain-ai/langgraph-example-monorepo) repository for an example of how to do so. + + The final repo structure will look something like this: ```bash diff --git a/docs/docs/cloud/deployment/setup_pyproject.md b/docs/docs/cloud/deployment/setup_pyproject.md index 94a4f8f50..767171f05 100644 --- a/docs/docs/cloud/deployment/setup_pyproject.md +++ b/docs/docs/cloud/deployment/setup_pyproject.md @@ -7,6 +7,9 @@ This walkthrough is based on [this repository](https://github.com/langchain-ai/l !!! tip "Setup with requirements.txt" If you prefer using `requirements.txt` for dependency management, check out [this how-to guide](./setup.md). +!!! tip "Setup with a Monorepo" + If you are interested in deploying a graph located inside a monorepo, take a look at [this](https://github.com/langchain-ai/langgraph-example-monorepo) repository for an example of how to do so. + The final repo structure will look something like this: ```bash