From 2180e0f80fcf783684ab64abd23562f6bc8a692e Mon Sep 17 00:00:00 2001 From: Hunter Lovell Date: Tue, 29 Jul 2025 20:51:03 -0700 Subject: [PATCH] chore: ref fixes --- docs/docs/agents/overview.md | 4 ++-- docs/docs/tutorials/workflows.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/agents/overview.md b/docs/docs/agents/overview.md index eda370148..43b583ef3 100644 --- a/docs/docs/agents/overview.md +++ b/docs/docs/agents/overview.md @@ -208,7 +208,7 @@ The high-level components are organized into several packages, each with a speci ## Visualize an agent graph -Use the following tool to visualize the graph generated by [`createReactAgent`](/langgraphjs/reference/functions/langgraph_prebuilt.createReactAgent.html) and to view an outline of the corresponding code. It allows you to explore the infrastructure of the agent as defined by the presence of: +Use the following tool to visualize the graph generated by @[`createReactAgent`][create_react_agent] and to view an outline of the corresponding code. It allows you to explore the infrastructure of the agent as defined by the presence of: - [`tools`](./tools.md): A list of tools (functions, APIs, or other callable objects) that the agent can use to perform tasks. - `preModelHook`: A function that is called before the model is invoked. It can be used to condense messages or perform other preprocessing tasks. @@ -232,7 +232,7 @@ Use the following tool to visualize the graph generated by [`createReactAgent`]( -The following code snippet shows how to create the above agent (and underlying graph) with [`createReactAgent`](/langgraphjs/reference/functions/langgraph_prebuilt.createReactAgent.html): +The following code snippet shows how to create the above agent (and underlying graph) with @[`createReactAgent`][create_react_agent]:
diff --git a/docs/docs/tutorials/workflows.md b/docs/docs/tutorials/workflows.md index 06a6f7129..7d46f853e 100644 --- a/docs/docs/tutorials/workflows.md +++ b/docs/docs/tutorials/workflows.md @@ -1274,7 +1274,7 @@ With orchestrator-worker, an orchestrator breaks down a task and delegates each **Creating Workers in LangGraph** - Because orchestrator-worker workflows are common, LangGraph **has the `Send` API to support this**. It lets you dynamically create worker nodes and send each one a specific input. Each worker has its own state, and all worker outputs are written to a *shared state key* that is accessible to the orchestrator graph. This gives the orchestrator access to all worker output and allows it to synthesize them into a final output. As you can see below, we iterate over a list of sections and `Send` each to a worker node. See further documentation [here](../how-tos/map-reduce/) and [here](../concepts/low_level/#send). + Because orchestrator-worker workflows are common, LangGraph **has the `Send` API to support this**. It lets you dynamically create worker nodes and send each one a specific input. Each worker has its own state, and all worker outputs are written to a *shared state key* that is accessible to the orchestrator graph. This gives the orchestrator access to all worker output and allows it to synthesize them into a final output. As you can see below, we iterate over a list of sections and `Send` each to a worker node. See further documentation [here](https://langchain-ai.github.io/langgraph/how-tos/map-reduce/) and [here](https://langchain-ai.github.io/langgraph/concepts/low_level/#send). ```typescript import { withLangGraph } from "@langchain/langgraph/zod";