From 8ca5e56f52026c96ef7cb4a8e3e0a71500bd9430 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Wed, 9 Jul 2025 14:59:41 -0400 Subject: [PATCH] fix(docs): links in examples file (#5420) Fix broken links in examples --- .github/workflows/pr_lint.yml | 1 + docs/docs/examples/index.md | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr_lint.yml b/.github/workflows/pr_lint.yml index cada5b1ba..50749b528 100644 --- a/.github/workflows/pr_lint.yml +++ b/.github/workflows/pr_lint.yml @@ -38,6 +38,7 @@ jobs: prebuilt scheduler-kafka sdk-py + docs requireScope: false ignoreLabels: | ignore-lint-pr-title diff --git a/docs/docs/examples/index.md b/docs/docs/examples/index.md index 84c721ac3..aadfb0f2c 100644 --- a/docs/docs/examples/index.md +++ b/docs/docs/examples/index.md @@ -5,17 +5,17 @@ The pages in this section provide end-to-end examples for the following topics: ## General - [Template Applications](../concepts/template_applications.md): Create a LangGraph application from a template. -- [Agentic RAG](./rag/langgraph_agentic_rag.md): Build a retrieval agent that can decide when to use a retriever tool. -- [Agent Supervisor](./multi_agent/agent_supervisor.md): Build a supervisor agent that can manage a team of agents. -- [SQL agent](./sql/sql-agent.md): Build a SQL agent that can execute SQL queries and return the results. +- [Agentic RAG](../tutorials/rag/langgraph_agentic_rag.md): Build a retrieval agent that can decide when to use a retriever tool. +- [Agent Supervisor](../tutorials/multi_agent/agent_supervisor.md): Build a supervisor agent that can manage a team of agents. +- [SQL agent](../tutorials/sql/sql-agent.md): Build a SQL agent that can execute SQL queries and return the results. - [Prebuilt chat UI](../agents/ui.md): Use a prebuilt chat UI to interact with any LangGraph agent. - [Graph runs in LangSmith](../how-tos/run-id-langsmith.md): Use LangSmith to track and analyze graph runs. ## LangGraph Platform -- [Set up custom authentication](./auth/getting_started.md): Set up custom authentication for your LangGraph application. -- [Make conversations private](./auth/resource_auth.md): Make conversations private by using resource-based authentication. -- [Connect an authentication provider](./auth/add_auth_server.md): Connect an authentication provider to your LangGraph application. +- [Set up custom authentication](../tutorials/auth/getting_started.md): Set up custom authentication for your LangGraph application. +- [Make conversations private](../tutorials/auth/resource_auth.md): Make conversations private by using resource-based authentication. +- [Connect an authentication provider](../tutorials/auth/add_auth_server.md): Connect an authentication provider to your LangGraph application. - [Rebuild graph at runtime](../cloud/deployment/graph_rebuild.md): Rebuild a graph at runtime. - [Use RemoteGraph](../how-tos/use-remote-graph.md): Use RemoteGraph to deploy your LangGraph application to a remote server. - [Deploy CrewAI, AutoGen, and other frameworks](../how-tos/autogen-integration.md): Deploy CrewAI, AutoGen, and other frameworks with LangGraph.