From 3dd6266bccec1ebb4f7674d3f1e2fe009a6a4961 Mon Sep 17 00:00:00 2001 From: Saurabh Chalke Date: Fri, 19 Apr 2024 20:46:44 +0530 Subject: [PATCH] docs: Remove Duplicate --quiet Flag in Installation Command in LangSmith Docs (#20121) **Description:** This pull request removes a duplicated `--quiet` flag in the pip install command found in the LangSmith Walkthrough section of the documentation. **Issue:** N/A **Dependencies:** None --- docs/docs/langsmith/walkthrough.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/langsmith/walkthrough.ipynb b/docs/docs/langsmith/walkthrough.ipynb index 155a4418b7b..7aa504988ed 100644 --- a/docs/docs/langsmith/walkthrough.ipynb +++ b/docs/docs/langsmith/walkthrough.ipynb @@ -69,8 +69,8 @@ "metadata": {}, "outputs": [], "source": [ - "%pip install --upgrade --quiet langchain langsmith langchainhub --quiet\n", - "%pip install --upgrade --quiet langchain-openai tiktoken pandas duckduckgo-search --quiet" + "%pip install --upgrade --quiet langchain langsmith langchainhub\n", + "%pip install --upgrade --quiet langchain-openai tiktoken pandas duckduckgo-search" ] }, {