From cd54a7a66b3971fcf2e2b653a93564fec92322be Mon Sep 17 00:00:00 2001
From: Alex Yang <himself65@outlook.com>
Date: Tue, 16 Apr 2024 15:54:40 -0500
Subject: [PATCH] docs: remove `verbose` (#725)

---
 .github/workflows/lint_on_push_or_pull.yml            | 2 --
 apps/docs/docs/examples/agent.mdx                     | 1 -
 apps/docs/docs/modules/agent/multi_document_agent.mdx | 2 --
 apps/docs/docs/modules/agent/openai.mdx               | 2 --
 apps/docs/docs/modules/agent/query_engine_tool.mdx    | 2 --
 apps/docs/docs/modules/agent/react_agent.mdx          | 2 --
 6 files changed, 11 deletions(-)

diff --git a/.github/workflows/lint_on_push_or_pull.yml b/.github/workflows/lint_on_push_or_pull.yml
index 1fc4c4324..96b8eae52 100644
--- a/.github/workflows/lint_on_push_or_pull.yml
+++ b/.github/workflows/lint_on_push_or_pull.yml
@@ -14,8 +14,6 @@ jobs:
     steps:
       - uses: actions/checkout@v4
       - uses: pnpm/action-setup@v2
-        with:
-          version: latest
       - name: Setup Node.js
         uses: actions/setup-node@v4
         with:
diff --git a/apps/docs/docs/examples/agent.mdx b/apps/docs/docs/examples/agent.mdx
index 2ebbf2e9b..2b37e9cce 100644
--- a/apps/docs/docs/examples/agent.mdx
+++ b/apps/docs/docs/examples/agent.mdx
@@ -67,7 +67,6 @@ async function main() {
   // Create an OpenAIAgent with the function tools
   const agent = new OpenAIAgent({
     tools: [sumFunctionTool, divideFunctionTool],
-    verbose: true,
   });
 
   // Chat with the agent
diff --git a/apps/docs/docs/modules/agent/multi_document_agent.mdx b/apps/docs/docs/modules/agent/multi_document_agent.mdx
index 7c4188f94..f51f459ff 100644
--- a/apps/docs/docs/modules/agent/multi_document_agent.mdx
+++ b/apps/docs/docs/modules/agent/multi_document_agent.mdx
@@ -221,7 +221,6 @@ for (const title of wikiTitles) {
   const agent = new OpenAIAgent({
     tools: queryEngineTools,
     llm,
-    verbose: true,
   });
 
   documentAgents[title] = agent;
@@ -282,7 +281,6 @@ const objectIndex = await ObjectIndex.fromObjects(
 const topAgent = new OpenAIAgent({
   toolRetriever: await objectIndex.asRetriever({}),
   llm,
-  verbose: true,
   prefixMessages: [
     {
       content:
diff --git a/apps/docs/docs/modules/agent/openai.mdx b/apps/docs/docs/modules/agent/openai.mdx
index 37a4364f9..7b47dd78e 100644
--- a/apps/docs/docs/modules/agent/openai.mdx
+++ b/apps/docs/docs/modules/agent/openai.mdx
@@ -88,7 +88,6 @@ Now we can create an OpenAIAgent with the function tools.
 ```ts
 const agent = new OpenAIAgent({
   tools: [sumFunctionTool, divideFunctionTool],
-  verbose: true,
 });
 ```
 
@@ -169,7 +168,6 @@ async function main() {
   // Create an OpenAIAgent with the function tools
   const agent = new OpenAIAgent({
     tools: [sumFunctionTool, divideFunctionTool],
-    verbose: true,
   });
 
   // Chat with the agent
diff --git a/apps/docs/docs/modules/agent/query_engine_tool.mdx b/apps/docs/docs/modules/agent/query_engine_tool.mdx
index 85b007014..4b9a3c399 100644
--- a/apps/docs/docs/modules/agent/query_engine_tool.mdx
+++ b/apps/docs/docs/modules/agent/query_engine_tool.mdx
@@ -64,7 +64,6 @@ const queryEngineTool = new QueryEngineTool({
 
 const agent = new OpenAIAgent({
   tools: [queryEngineTool],
-  verbose: true,
 });
 ```
 
@@ -114,7 +113,6 @@ async function main() {
   // Create an OpenAIAgent with the function tools
   const agent = new OpenAIAgent({
     tools: [queryEngineTool],
-    verbose: true,
   });
 
   // Chat with the agent
diff --git a/apps/docs/docs/modules/agent/react_agent.mdx b/apps/docs/docs/modules/agent/react_agent.mdx
index 4c5e6cb97..ba31674f0 100644
--- a/apps/docs/docs/modules/agent/react_agent.mdx
+++ b/apps/docs/docs/modules/agent/react_agent.mdx
@@ -90,7 +90,6 @@ Now we can create an OpenAIAgent with the function tools.
 ```ts
 const agent = new ReActAgent({
   tools: [sumFunctionTool, divideFunctionTool],
-  verbose: true,
 });
 ```
 
@@ -185,7 +184,6 @@ async function main() {
   // Create an OpenAIAgent with the function tools
   const agent = new OpenAIAgent({
     tools: [sumFunctionTool, divideFunctionTool],
-    verbose: true,
   });
 
   // Chat with the agent
-- 
GitLab