From a37be6dc6531b5dc68a5ccea22227da468e5ca8a Mon Sep 17 00:00:00 2001 From: Sathesh Sivashanmugam Date: Wed, 1 Jan 2025 21:21:29 -0700 Subject: [PATCH] docs: Minor typo fixed, install necessary pip (#28976) Description: Document update. A minor typo is fixed. Install lxml as required. Issue: - Dependencies: - Twitter handle: @sathesh --------- Co-authored-by: Erick Friis --- docs/docs/integrations/document_loaders/recursive_url.ipynb | 2 +- docs/docs/integrations/document_loaders/slack.ipynb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/integrations/document_loaders/recursive_url.ipynb b/docs/docs/integrations/document_loaders/recursive_url.ipynb index 98c87977435e3..0820fb2935616 100644 --- a/docs/docs/integrations/document_loaders/recursive_url.ipynb +++ b/docs/docs/integrations/document_loaders/recursive_url.ipynb @@ -44,7 +44,7 @@ "metadata": {}, "outputs": [], "source": [ - "%pip install -qU langchain-community beautifulsoup4" + "%pip install -qU langchain-community beautifulsoup4 lxml" ] }, { diff --git a/docs/docs/integrations/document_loaders/slack.ipynb b/docs/docs/integrations/document_loaders/slack.ipynb index 648ecda4e86fd..98a8243511bd5 100644 --- a/docs/docs/integrations/document_loaders/slack.ipynb +++ b/docs/docs/integrations/document_loaders/slack.ipynb @@ -41,7 +41,7 @@ "source": [ "# Optionally set your Slack URL. This will give you proper URLs in the docs sources.\n", "SLACK_WORKSPACE_URL = \"https://xxx.slack.com\"\n", - "LOCAL_ZIPFILE = \"\" # Paste the local paty to your Slack zip file here.\n", + "LOCAL_ZIPFILE = \"\" # Paste the local path to your Slack zip file here.\n", "\n", "loader = SlackDirectoryLoader(LOCAL_ZIPFILE, SLACK_WORKSPACE_URL)" ]