From bcc6485f6cf79a26d94bde85d8faa4c6a341a1b7 Mon Sep 17 00:00:00 2001 From: vksx <30385036+vksx@users.noreply.github.com> Date: Wed, 28 May 2025 19:06:48 +0530 Subject: [PATCH] (docs) fix broken links (#4823) --- docs/docs/agents/agents.md | 2 +- docs/docs/tutorials/get-started/1-build-basic-chatbot.md | 2 +- docs/docs/tutorials/get-started/2-add-tools.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/agents/agents.md b/docs/docs/agents/agents.md index 3652cee98..d33badda5 100644 --- a/docs/docs/agents/agents.md +++ b/docs/docs/agents/agents.md @@ -15,7 +15,7 @@ This guide shows you how to set up and use LangGraph's **prebuilt**, **reusable* Before you start this tutorial, ensure you have the following: -- An [Anthropic](https://console.anthropic.com/settings/admin-keys) API key +- An [Anthropic](https://console.anthropic.com/settings/keys) API key ## 1. Install dependencies diff --git a/docs/docs/tutorials/get-started/1-build-basic-chatbot.md b/docs/docs/tutorials/get-started/1-build-basic-chatbot.md index a71d88390..ba2be2663 100644 --- a/docs/docs/tutorials/get-started/1-build-basic-chatbot.md +++ b/docs/docs/tutorials/get-started/1-build-basic-chatbot.md @@ -6,7 +6,7 @@ In this tutorial, you will build a basic chatbot. This chatbot is the basis for Before you start this tutorial, ensure you have access to a LLM that supports tool-calling features, such as [OpenAI](https://platform.openai.com/api-keys), -[Anthropic](https://console.anthropic.com/settings/admin-keys), or +[Anthropic](https://console.anthropic.com/settings/keys), or [Google Gemini](https://ai.google.dev/gemini-api/docs/api-key). ## 1. Install packages diff --git a/docs/docs/tutorials/get-started/2-add-tools.md b/docs/docs/tutorials/get-started/2-add-tools.md index 58f0a9ad2..cd9ee7cd7 100644 --- a/docs/docs/tutorials/get-started/2-add-tools.md +++ b/docs/docs/tutorials/get-started/2-add-tools.md @@ -146,7 +146,7 @@ graph_builder.add_node("tools", tool_node) !!! note - If you do not want to build this yourself in the future, you can use LangGraph's prebuilt [ToolNode](https://langchain-ai.github.io/langgraph/reference/prebuilt/#toolnode). + If you do not want to build this yourself in the future, you can use LangGraph's prebuilt [ToolNode](https://langchain-ai.github.io/langgraph/reference/agents/#langgraph.prebuilt.tool_node.ToolNode). ## 6. Define the `conditional_edges`