From f0e78281e2013cff0f099ec1a4d7894a8d25d99e Mon Sep 17 00:00:00 2001
From: Jerry Liu <jerryjliu98@gmail.com>
Date: Thu, 8 Feb 2024 09:14:32 -0800
Subject: [PATCH] move agent module guide up one-level (#10519)

Co-authored-by: Haotian Zhang <socool.king@gmail.com>
---
 docs/index.rst                              | 1 +
 docs/module_guides/deploying/agents/root.md | 2 +-
 docs/module_guides/querying/querying.md     | 4 +++-
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/docs/index.rst b/docs/index.rst
index 587556b869..d0b0771f7a 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -153,6 +153,7 @@ Associated projects
    module_guides/indexing/indexing.md
    module_guides/storing/storing.md
    module_guides/querying/querying.md
+   module_guides/deploying/agents/root.md
    module_guides/observability/observability.md
    module_guides/evaluating/root.md
    module_guides/supporting_modules/supporting_modules.md
diff --git a/docs/module_guides/deploying/agents/root.md b/docs/module_guides/deploying/agents/root.md
index 82dbbd3969..04d97a15b4 100644
--- a/docs/module_guides/deploying/agents/root.md
+++ b/docs/module_guides/deploying/agents/root.md
@@ -1,4 +1,4 @@
-# Data Agents
+# Agents
 
 ## Concept
 
diff --git a/docs/module_guides/querying/querying.md b/docs/module_guides/querying/querying.md
index 595cd67e7a..c8246dc19b 100644
--- a/docs/module_guides/querying/querying.md
+++ b/docs/module_guides/querying/querying.md
@@ -1,6 +1,8 @@
 # Querying
 
-Querying is the most important part of your LLM application. To learn more about getting a final product that you can deploy, check out the [query engine](/module_guides/deploying/query_engine/root.md), [chat engine](/module_guides/deploying/chat_engines/root.md) and [agents](/module_guides/deploying/agents/root.md) sections.
+Querying is the most important part of your LLM application. To learn more about getting a final product that you can deploy, check out the [query engine](/module_guides/deploying/query_engine/root.md), [chat engine](/module_guides/deploying/chat_engines/root.md).
+
+If you wish to combine advanced reasoning with tool use, check out our [agents](/module_guides/deploying/agents/root.md) guide.
 
 ## Query Pipeline
 
-- 
GitLab